32 lines
950 B
HTML
32 lines
950 B
HTML
<h1 mat-dialog-title>Hi </h1>
|
|
<div mat-dialog-content>
|
|
<p>User name</p>
|
|
<mat-form-field class="fillField">
|
|
<input matInput [(ngModel)]="data.username">
|
|
</mat-form-field>
|
|
<p>Password</p>
|
|
<mat-form-field class="fillField">
|
|
<mat-label>Enter your password</mat-label>
|
|
<input matInput
|
|
[type]="hide() ? 'password' : 'text'"
|
|
[(ngModel)]="data.password"
|
|
/>
|
|
<button
|
|
mat-icon-button
|
|
matSuffix
|
|
(click)="clickEvent($event)"
|
|
[attr.aria-label]="'Hide password'"
|
|
[attr.aria-pressed]="hide()"
|
|
>
|
|
<mat-icon>{{hide() ? 'visibility_off' : 'visibility'}}</mat-icon>
|
|
</button>
|
|
</mat-form-field>
|
|
</div>
|
|
|
|
<div mat-dialog-actions>
|
|
<button mat-button (click)="signup()">Sign Up</button>
|
|
<span class="menu-spacer"></span>
|
|
<button mat-button mat-dialog-close (click)="onNoClick()">No Thanks</button>
|
|
<button mat-button cdkFocusInitial (click)="login()">Ok</button>
|
|
</div>
|