You've already forked openaccounting-web
mirror of
https://github.com/openaccounting/oa-web.git
synced 2025-12-11 22:30:46 +13:00
17 lines
326 B
HTML
17 lines
326 B
HTML
|
|
<div *ngIf="success">
|
||
|
|
<h1>Success</h1>
|
||
|
|
|
||
|
|
<div class="section">
|
||
|
|
<p>
|
||
|
|
Your email has been verified. Please <a routerLink="/login">login</a> to your account.
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div *ngIf="error">
|
||
|
|
<h1>Verification Error</h1>
|
||
|
|
<div class="section">
|
||
|
|
<p class="error">{{error.message}}</p>
|
||
|
|
</div>
|
||
|
|
</div>
|