You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemm_srca/Mohem/src/app/home/nfc-modal/nfc-modal.component.html

16 lines
599 B
HTML

<ion-content>
<div class="heading-div">
<p *ngIf="!gifStatus" class="heading-text">{{ "general, nfc-detect" | translate }}</p>
<p *ngIf="gifStatus" class="heading-text">{{ "general, nfc-swipe-done" | translate }}</p>
</div>
<div *ngIf="!gifStatus" class="ripple-div">
<img src="../assets/imgs/rippleNFC.gif" />
<p>{{ "general, nfc-detect-2" | translate }}</p>
<ion-button (click)="closeModal();">{{ "general, nfc-cancel" | translate }}</ion-button>
</div>
<div *ngIf="gifStatus" class="checked-img">
<img src="../assets/imgs/check.png" />
</div>
</ion-content>