|
4 | 4 | - we just sent a verification mail (notably after sign up) |
5 | 5 | - we arrived from the guard after trying to access a protected route even though we are connected |
6 | 6 | --> |
7 | | - <div fxLayout="row" fxLayoutAlign="center center" *ngIf="(config.guardProtectedRoutesUntilEmailIsVerified && !user.emailVerified) || (authProcess.emailConfirmationSent && !user.emailVerified); else signedInUser"> |
| 7 | + <div *ngIf="(config.guardProtectedRoutesUntilEmailIsVerified && !user.emailVerified) || (authProcess.emailConfirmationSent && !user.emailVerified); else signedInUser" |
| 8 | + fxLayout="row" fxLayoutAlign="center center"> |
8 | 9 | <ngx-auth-firebaseui-email-confirmation |
9 | 10 | [template]="verifyEmailTemplate" |
10 | 11 | [email]="user.email" |
|
42 | 43 | <mat-card> |
43 | 44 | <mat-card-title>{{signInCardTitleText}}</mat-card-title> |
44 | 45 | <mat-card-content> |
45 | | - <form [formGroup]="signInFormGroup" |
| 46 | + <form [@animateStagger]="{ value: '50' }" |
| 47 | + [formGroup]="signInFormGroup" |
46 | 48 | (ngSubmit)="signIn()"> |
47 | 49 | <div fxLayout="column" fxLayoutAlign="center"> |
48 | | - <mat-form-field [@animate]="{value:'*',params:{duration:'300ms',y:'100px'}}" [appearance]="appearance"> |
| 50 | + <mat-form-field [@animate]="{value:'*',params:{duration:'300ms',y:'100px'}}" |
| 51 | + [appearance]="appearance"> |
49 | 52 | <mat-label>{{emailText}}</mat-label> |
50 | 53 | <input matInput |
51 | 54 | formControlName="email" |
|
116 | 119 | <mat-card> |
117 | 120 | <mat-card-title>{{registerCardTitleText}}</mat-card-title> |
118 | 121 | <mat-card-content fxLayout="column" fxLayoutAlign="center"> |
119 | | - <form [@animate]="{value:'*',params:{duration:'300ms',y:'100px'}}" |
| 122 | + <form [@animateStagger]="{ value: '50' }" |
120 | 123 | [formGroup]="signUpFormGroup" (ngSubmit)="signUpFormGroup.valid && |
121 | 124 | processLegalSignUP(authProvider.EmailAndPassword)"> |
122 | 125 | <div fxLayout="column" fxLayoutAlign="center"> |
|
253 | 256 | <mat-icon>close</mat-icon> |
254 | 257 | </button> |
255 | 258 | </ng-template> |
256 | | - <form [@animateStagger]="{ value: '50' }" [formGroup]="resetPasswordFormGroup" (ngSubmit)="resetPasswordFormGroup.valid && resetPassword()"> |
| 259 | + <form [@animateStagger]="{ value: '50' }" |
| 260 | + [formGroup]="resetPasswordFormGroup" |
| 261 | + (ngSubmit)="resetPasswordFormGroup.valid && resetPassword()"> |
257 | 262 | <mat-card class="reset-password-card"> |
258 | 263 | <mat-card-content> |
259 | | - <mat-form-field [@animate]="{value:'*',params:{duration:'300ms',y:'100px'}}" class="full-width" [appearance]="appearance"> |
| 264 | + <mat-form-field [@animate]="{value:'*',params:{duration:'300ms',y:'100px'}}" class="full-width" |
| 265 | + [appearance]="appearance"> |
260 | 266 | <mat-label> {{ resetPasswordTabText }} </mat-label> |
261 | 267 | <input matInput |
262 | 268 | [title]="resetPasswordInputText" |
|
0 commit comments