aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+verify-account/verify-account-email/verify-account-email.component.html
blob: 30ace5e107ce04b4bd298577e5eadaf7297a17f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="margin-content">
  <div i18n class="title-page title-page-single">
    Verify account email confirmation
  </div>

  <div i18n *ngIf="success; else verificationError">
    Your email has been verified and you may now login. Redirecting...
  </div>
  <ng-template #verificationError>
    <div>
      <span i18n>An error occurred. </span>
      <a i18n routerLink="/verify-account/ask-email">Request new verification email.</a>
    </div>
  </ng-template>
</div>