aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html
blob: 8c8b1098e24bae18b4ce1b58e3094f54e9b6673f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div *ngIf="loaded" class="margin-content">
  <h1 i18n class="title-page">Verify email</h1>

  <my-signup-success-after-email
    *ngIf="displaySignupSuccess()"
    [requiresApproval]="isRegistrationRequest() && requiresApproval"
  >
  </my-signup-success-after-email>

  <div i18n class="alert alert-success" *ngIf="!isRegistrationRequest() && isPendingEmail && success">Email updated.</div>

  <div class="alert alert-danger" *ngIf="failed">
    <span i18n>An error occurred.</span>

    <a i18n class="ms-1 link-orange" routerLink="/verify-account/ask-send-email">
      Request a new verification email
    </a>
  </div>
</div>