mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
12 lines
296 B
HTML
12 lines
296 B
HTML
<div *ngIf="hero">
|
|
<h2>{{hero.name}} details!</h2>
|
|
<div>
|
|
<label>id: </label>{{hero.id}}</div>
|
|
<div>
|
|
<label>name: </label>
|
|
<input [(ngModel)]="hero.name" placeholder="name" />
|
|
</div>
|
|
<button (click)="goBack()">Back</button>
|
|
<button (click)="save()">Save</button>
|
|
</div>
|