duck-booking-tool-front/app/duck-detail.component.html
Gergely Polonkai 7c36ce1282 Move to the in-memory web API
This also makes it possible to save data.

Signed-off-by: Gergely Polonkai <gergely@polonkai.eu>
2016-09-09 14:42:24 +02:00

13 lines
300 B
HTML

<div *ngIf="duck">
<div>
<label>id: </label>
{{ duck.id }}
</div>
<div>
<label>color: </label>
<input [(ngModel)]="duck.color" placeholder="Color" />
</div>
<button (click)="save()">Save</button>
<button (click)="goBack()">Back</button>
</div>