blob: a83d4a3c237db3c9c738eb00e34ca993576547e0 (
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-send-email">Request new verification email.</a>
</div>
</ng-template>
</div>
|