aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html
blob: 259aec0def3da172d37f3a1df46111f0e80f05e2 (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()" style="background-color: lightgray;">Da</button>
    <button id="btnNo" mat-stroked-button (click)="onNoClick()" style="background-color: lightgray;">Ne</button>
</div>