aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html
blob: 728709ca69c47daf440bf0231ab86020baa8ec83 (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>

  <my-signup-success i18n *ngIf="success; else verificationError" message="Your email has been verified and you may now login.">
  </my-signup-success>

  <ng-template #verificationError>
    <div>
      <span i18n>An error occurred. </span>
      <a i18n routerLink="/verify-account/ask-send-email">Request new verification email.</a>
    </div>
  </ng-template>
</div>