mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-14 12:25:14 +00:00
12 lines
413 B
HTML
12 lines
413 B
HTML
<h1 mat-dialog-title>Hi {{data.name}}</h1>
|
|
<div mat-dialog-content>
|
|
<p>What's your favorite animal?</p>
|
|
<mat-form-field>
|
|
<input matInput tabindex="1" [(ngModel)]="data.animal">
|
|
</mat-form-field>
|
|
</div>
|
|
<div mat-dialog-actions>
|
|
<button mat-button [mat-dialog-close]="data.animal" tabindex="2">Ok</button>
|
|
<button mat-button (click)="onNoClick()" tabindex="-1">No Thanks</button>
|
|
</div>
|