Files
Extranet_UI_V2/src/app/modules/auth/verify-email/verify-email.component.html
arfat qureshi 6ce776f218 first commit
2025-10-29 11:44:13 +05:30

34 lines
1.5 KiB
HTML

<div class="custom-container">
<div class="custom-card cardDeactive" *ngIf="ShowApprovalCard">
<div class="card-content">
<img [src]="commonService.environmentObj.cdnBaseUrl + 'assets/icon/correct.png'" alt="Image" width="100px">
<h4 class="mt-2">Thank you.</h4>
<h4 class="mb-3">Sign-in attempt was approved.</h4>
<p>You can close this page.</p>
</div>
</div>
<div class="custom-card cardDeactive" *ngIf="ShowDeactivateCard">
<div class="card-content">
<img [src]="commonService.environmentObj.cdnBaseUrl + 'assets/icon/correct.png'" alt="Image" width="100px">
<h4 class="mt-2">Thank you.</h4>
<h4 class="mb-3">Your account has been deactivated.</h4>
<p>You can close this page.</p>
</div>
</div>
<div class="custom-card cardDenied" *ngIf="ShowRejectedCard">
<div class="card-content">
<img [src]="commonService.environmentObj.cdnBaseUrl + 'assets/icon/cross.png'" alt="Image" width="100px">
<h4 class="mt-2">Thank you.</h4>
<h4 class="mb-3">Sign-in attempt was denied.</h4>
<p>You can close this page.</p>
</div>
</div>
<div class="custom-card cardExpired" *ngIf="ShowExpiredCard">
<div class="card-content">
<img [src]="commonService.environmentObj.cdnBaseUrl + 'assets/icon/expired.svg'" alt="Image" width="100px">
<h4 class="mt-2">The link you followed has expired.</h4>
<h4 class="mb-3">Please try to login again.</h4>
<p>You can close this page.</p>
</div>
</div>
</div>