aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html
blob: 0470d3952277a9e94853ae8ce052bc3ba449f436 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<h2 mat-dialog-title class="text-center">{{data.title}}</h2>
<div mat-dialog-content class="mt-5 mb-4 mx-1">
    <form (keydown)="withEnterKey($event)">
        {{data.message}}
    </form>
</div>
<div mat-dialog-actions class="d-flex justify-content-center mt-4">
    <button id="btnYes" mat-stroked-button color="basic" (click)="onYesClick()">Da</button>
    <button id="btnNo" mat-stroked-button (click)="onNoClick()">Ne</button>
</div>