diff --git a/src/app/components/home/_dialogs/register/register.component.html b/src/app/components/home/_dialogs/register/register.component.html index 6d65d3d4230421a07c16ac70e85a5a6c52104867..4bab2f8cc0a1092ac4f05bbffa1758185bd13402 100644 --- a/src/app/components/home/_dialogs/register/register.component.html +++ b/src/app/components/home/_dialogs/register/register.component.html @@ -11,6 +11,14 @@ </mat-error> </mat-form-field> + <mat-form-field class="input-block"> + <input matInput #userName2 placeholder="{{ 'register.email-verify' | translate }}" [formControl]="username2FormControl" + [errorStateMatcher]="matcher"> + <mat-error *ngIf="username2FormControl.hasError('emailIsEqual') && !username2FormControl.hasError('required')"> + {{ 'register.email-unmatch' | translate }} + </mat-error> + </mat-form-field> + <mat-form-field class="input-block"> <input matInput type="password" #userPassword1 placeholder="{{ 'register.password' | translate }}" [formControl]="password1FormControl" [errorStateMatcher]="matcher">