24 lines
706 B
HTML
Raw Normal View History

2019-09-18 15:02:21 +09:00
<mat-card class="confirm-card">
2019-09-24 14:53:22 +09:00
<mat-card-header cdkDrag cdkDragRootElement=".cdk-overlay-pane" cdkDragHandle>
2019-09-18 15:02:21 +09:00
<mat-card-title>{{ data.title }}</mat-card-title>
<!-- <mat-card-subtitle>Confirm</mat-card-subtitle> -->
</mat-card-header>
<mat-card-content>
2019-09-24 14:53:22 +09:00
<div #messageContainer class="notice">
2019-09-18 15:02:21 +09:00
{{ data.message }}
2019-09-24 14:53:22 +09:00
</div>
2019-09-18 15:02:21 +09:00
</mat-card-content>
2019-09-24 18:42:53 +09:00
<mat-card-actions *ngIf="!hideAction" class="button-farm flex-row">
2019-09-18 15:02:21 +09:00
<button
mat-stroked-button
(click)="onClickChoice(false)"
class="mat-primary"
>
No
</button>
<button mat-flat-button (click)="onClickChoice(true)" class="mat-primary">
Yes
</button>
</mat-card-actions>
</mat-card>