first commit

This commit is contained in:
arfat qureshi
2025-10-29 11:44:13 +05:30
parent 1fcff40400
commit 6ce776f218
463 changed files with 95252 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<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>