17 lines
858 B
HTML
17 lines
858 B
HTML
<div class="container mx-auto p-4 text-center min-h-screen bg-gray-100">
|
|
<ng-container *ngIf="verificationStatus === 'pending'">
|
|
<p class="text-lg text-gray-600">Verifying your email...</p>
|
|
</ng-container>
|
|
|
|
<ng-container *ngIf="verificationStatus === 'success'">
|
|
<h2 class="text-2xl font-bold text-green-600 mb-5">Your email has been verified</h2>
|
|
<!-- <p class="text-gray-700 mb-4">You can now sign in with your new account</p> -->
|
|
<a routerLink="/account" class="inline-block px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600 transition-colors">Follow this link to access your Account Page </a>
|
|
</ng-container>
|
|
|
|
<ng-container *ngIf="verificationStatus === 'error'">
|
|
<h2 class="text-2xl font-bold text-red-600 mb-2">Verification failed</h2>
|
|
<p class="text-gray-700">{{ errorMessage }}</p>
|
|
</ng-container>
|
|
</div>
|