mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 21:35:50 +00:00
21 lines
592 B
HTML
21 lines
592 B
HTML
|
|
<ion-header>
|
||
|
|
<ion-toolbar>
|
||
|
|
<ion-title>Edit Message</ion-title>
|
||
|
|
<ion-buttons slot="end">
|
||
|
|
<ion-button (click)="dismiss()">Close</ion-button>
|
||
|
|
</ion-buttons>
|
||
|
|
</ion-toolbar>
|
||
|
|
</ion-header>
|
||
|
|
|
||
|
|
<ion-content>
|
||
|
|
<form (ngSubmit)="save()" #editForm="ngForm">
|
||
|
|
<ion-item>
|
||
|
|
<ion-label position="floating">Edit Message</ion-label>
|
||
|
|
<ion-input [(ngModel)]="message" name="text" required></ion-input>
|
||
|
|
</ion-item>
|
||
|
|
<ion-footer>
|
||
|
|
<ion-button expand="full" type="submit" [disabled]="!editForm.form.valid">Save</ion-button>
|
||
|
|
</ion-footer>
|
||
|
|
</form>
|
||
|
|
</ion-content>
|