Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style(account): Add alternative email address validation indicator. #1621

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/app/account-details/personal-details.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ <h2><strong>Personal Details</strong></h2>
<mat-label>Alternative email address</mat-label>
<input type="email" matInput formControlName="email_alternative">
</mat-form-field>
<mat-icon *ngIf="is_alternative_email_validated" svgIcon="check-bold" matTooltip="Alternative email address is validated"></mat-icon>
<mat-icon *ngIf="!is_alternative_email_validated" svgIcon="email-arrow-right" matTooltip="Resend alternative email address validation" (click)="validate_alt_email()"></mat-icon>
<mat-form-field>
<mat-label>Phone number (optional)</mat-label>
<input type="tel" matInput formControlName="phone_number">
Expand Down
Loading