-
-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(package): path of config interface to support aot `@Inject(NgxAut…
…hFirebaseUIConfigToken)`
- Loading branch information
1 parent
8fec0a0
commit 61d1efa
Showing
5 changed files
with
24 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
<mat-tab-group [color]="color"> | ||
<!--Reset password tab--> | ||
<mat-tab *ngIf="passwordResetWished" label="Reset Password"> | ||
<form [formGroup]="resetPasswordFormGroup" (ngSubmit)="resetPasswordFormGroup.valid && resetPassword()"> | ||
|
||
|
@@ -47,14 +48,17 @@ | |
</mat-card> | ||
</form> | ||
</mat-tab> | ||
|
||
<!--Sign in tab--> | ||
<mat-tab label="Sign in"> | ||
<mat-card> | ||
<mat-card-title>Signing in</mat-card-title> | ||
<mat-card-content> | ||
<form [formGroup]="signInFormGroup" | ||
(ngSubmit)="signInFormGroup.valid && | ||
authProcess.signInWith | ||
(authProviders.EmailAndPassword,signInFormGroup.value.email,signInFormGroup.value.password)"> | ||
<div fxLayout="column" fxLayoutAlign="center center"> | ||
<div fxLayout="column" fxLayoutAlign="center"> | ||
<mat-form-field appearance="outline"> | ||
<!--<mat-label>E-mail</mat-label>--> | ||
<input matInput | ||
|
@@ -127,11 +131,11 @@ | |
<mat-card-title>Registration</mat-card-title> | ||
<div *ngIf="!authProcess.emailConfirmationSent;then register else confirm"></div> | ||
<ng-template #register> | ||
<mat-card-content fxLayout="column" fxLayoutAlign="center center"> | ||
<mat-card-content fxLayout="column" fxLayoutAlign="center"> | ||
<form [formGroup]="signUpFormGroup" (ngSubmit)="signUpFormGroup.valid && | ||
authProcess.signUp | ||
(signUpFormGroup.value.name,signUpFormGroup.value.email,signUpFormGroup.value.password)"> | ||
<div fxLayout="column" fxLayoutAlign="center center"> | ||
<div fxLayout="column" fxLayoutAlign="center"> | ||
<!--name--> | ||
<mat-form-field appearance="outline" label="Name"> | ||
<!--labels will work only with @angular/[email protected] --> | ||
|
@@ -176,7 +180,7 @@ | |
</mat-form-field> | ||
|
||
<!--password--> | ||
<div> | ||
<div fxLayout="column"> | ||
|
||
<mat-form-field appearance="outline"> | ||
<!--<mat-label>Password</mat-label>--> | ||
|
@@ -210,6 +214,11 @@ | |
[externalError]="sigUpPasswordFormControl.dirty"> | ||
</mat-password-strength> | ||
|
||
<!--<div fxLayout="column" fxLayoutAlign="start" style="margin-top: 0.5rem">--> | ||
<!--<mat-checkbox>I agree to the Terms of Service and Conditions</mat-checkbox>--> | ||
<!--<mat-checkbox>I have read and agree to the Privacy Policy</mat-checkbox>--> | ||
<!--</div>--> | ||
|
||
</div> | ||
|
||
<button mat-raised-button | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.