mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
25 lines
814 B
HTML
25 lines
814 B
HTML
|
|
<ion-header class="ion-no-border">
|
||
|
|
<div class="header-content">
|
||
|
|
<div class="header-icon-left">
|
||
|
|
<button class="btn-no-color cursor-pointer" (click)="close()">
|
||
|
|
<ion-icon src="assets/images/icons-arrow-arrow-left.svg"></ion-icon>
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
<div class="header-title">
|
||
|
|
<label>Adicionar notas</label>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</ion-header>
|
||
|
|
|
||
|
|
<ion-content>
|
||
|
|
<ion-item lines="none">
|
||
|
|
<ion-textarea [(ngModel)]="emendMessage" rows="4" cols="20" placeholder="Digite uma nota..."></ion-textarea>
|
||
|
|
</ion-item>
|
||
|
|
</ion-content>
|
||
|
|
<ion-footer>
|
||
|
|
<div class="buttons width-100">
|
||
|
|
<button class="btn-delete cursor-pointer" shape="round" (click)="close()">Cancelar</button>
|
||
|
|
<button class="btn-ok cursor-pointer" shape="round" (click)="save()">Gravar</button>
|
||
|
|
</div>
|
||
|
|
</ion-footer>
|