|
1 |
| -<mat-card fxFlex="1 1 auto" fxLayout="column"> |
2 |
| - <mat-card-title>Login</mat-card-title> |
3 |
| - <mat-card-content> |
4 |
| - <form [formGroup]="form" fxFlex="1 1 auto" fxLayout="column"> |
5 |
| - <mat-form-field> |
6 |
| - <mat-label>Email</mat-label> |
7 |
| - <input matInput formControlName="email" type="email" placeholder="email" required /> |
8 |
| - <mat-error *ngIf="form.get('email')?.hasError('required')"> Email is required</mat-error> |
9 |
| - </mat-form-field> |
| 1 | +<div class="container"> |
| 2 | + <img *ngIf="logo" [src]="logo" alt="Application logo" class="logo" /> |
| 3 | + <h1 class="mat-display-1">{{ appName }} login</h1> |
| 4 | + <mat-card fxFlex="1 1 auto" fxLayout="column"> |
| 5 | + <mat-card-content> |
| 6 | + <form [formGroup]="form" fxFlex="1 1 auto" fxLayout="column"> |
| 7 | + <mat-form-field color="accent"> |
| 8 | + <mat-label>Email</mat-label> |
| 9 | + <input |
| 10 | + matInput |
| 11 | + formControlName="email" |
| 12 | + type="email" |
| 13 | + autocomplete="email" |
| 14 | + autocapitalize="false" |
| 15 | + spellcheck="false" |
| 16 | + autocorrect="false" |
| 17 | + placeholder="email" |
| 18 | + required |
| 19 | + /> |
| 20 | + <mat-error *ngIf="form.get('email')?.hasError('required')"> Email is required</mat-error> |
| 21 | + </mat-form-field> |
10 | 22 |
|
11 |
| - <mat-form-field> |
12 |
| - <mat-label>Password</mat-label> |
13 |
| - <input |
14 |
| - matInput |
15 |
| - formControlName="password" |
16 |
| - type="password" |
17 |
| - placeholder="At least 6 chars" |
18 |
| - required |
19 |
| - minlength="6" |
20 |
| - /> |
21 |
| - <mat-error *ngIf="form.get('password')?.hasError('required')"> Password is required </mat-error> |
22 |
| - </mat-form-field> |
| 23 | + <mat-form-field color="accent"> |
| 24 | + <mat-label>Password</mat-label> |
| 25 | + <input |
| 26 | + matInput |
| 27 | + formControlName="password" |
| 28 | + type="password" |
| 29 | + placeholder="At least 6 chars" |
| 30 | + autocomplete="current-password" |
| 31 | + required |
| 32 | + minlength="6" |
| 33 | + /> |
| 34 | + <mat-error *ngIf="form.get('password')?.hasError('required')"> Password is required </mat-error> |
| 35 | + </mat-form-field> |
23 | 36 |
|
24 |
| - <button mat-button color="primary" [disabled]="form.invalid" (click)="login()">Login</button> |
| 37 | + <mat-checkbox formControlName="remember" color="accent">Remember me</mat-checkbox> |
25 | 38 |
|
26 |
| - <mat-error *ngIf="error$ | async as error"> Login failed: {{ error }} </mat-error> |
27 |
| - </form> |
28 |
| - </mat-card-content> |
| 39 | + <button mat-raised-button color="accent" [disabled]="form.invalid" (click)="login()">Login</button> |
29 | 40 |
|
30 |
| - <mat-card-actions> |
31 |
| - <p>Don't have a user yet? <a routerLink="/register">Register now</a></p> |
32 |
| - </mat-card-actions> |
33 |
| -</mat-card> |
| 41 | + <mat-error *ngIf="error$ | async as error"> Login failed: {{ error }} </mat-error> |
| 42 | + </form> |
| 43 | + </mat-card-content> |
| 44 | + |
| 45 | + <mat-card-actions> |
| 46 | + <p>Don't have a user yet? <a routerLink="/register">Register now</a></p> |
| 47 | + </mat-card-actions> |
| 48 | + </mat-card> |
| 49 | +</div> |
0 commit comments