You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
693 B
16 lines
693 B
<div class="signInForm">
|
|
<h1 mat-dialog-title>Edit</h1>
|
|
<mat-form-field class="full-width">
|
|
<mat-label>Nickname</mat-label>
|
|
<input matInput type="text" id="nickname" [formControl]="nickname" name="nickname" required>
|
|
</mat-form-field>
|
|
<br/>
|
|
<mat-form-field class="full-width">
|
|
<mat-label>Real Name</mat-label>
|
|
<input matInput type="text" id="realname" [formControl]="realname" name="realname" required>
|
|
</mat-form-field>
|
|
<mat-dialog-actions align="end">
|
|
<button mat-button mat-dialog-close>Cancel</button>
|
|
<button mat-button mat-dialog-close (click)="onClickSubmit()">Submit</button>
|
|
</mat-dialog-actions>
|
|
</div>
|
|
|