mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 21:35:50 +00:00
30 lines
1016 B
HTML
30 lines
1016 B
HTML
<ion-header class="ion-no-border">
|
|
</ion-header>
|
|
|
|
<ion-content>
|
|
<div class="header-content width-100">
|
|
<div class="header-title d-flex width-90">
|
|
<label>Deseja retirar este expedienta da sua caixa de correspondência?</label>
|
|
</div>
|
|
<div class="header-icon-left width-10">
|
|
<button class="btn-no-color" (click)="close()">
|
|
<ion-icon name="close-outline"></ion-icon>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="header-body width-100">
|
|
<p>Nota: Ao efectuar esta operação não será possível tratar este expediente a partir da caixa de correspondência</p>
|
|
</div>
|
|
</ion-content>
|
|
<ion-footer>
|
|
<ion-toolbar class="width-100 d-flex justify-space-between px-20">
|
|
<ion-buttons slot="start">
|
|
<button class="btn-delete" shape="round" (click)="close()">Não</button>
|
|
</ion-buttons>
|
|
<ion-title></ion-title>
|
|
<ion-buttons slot="end">
|
|
<button class="btn-ok" shape="round" (click)="save()">Sim</button>
|
|
</ion-buttons>
|
|
</ion-toolbar>
|
|
</ion-footer>
|