aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html
blob: 77e7be421bbb41daefc1544337bb0d2a0a2c879b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<h2 mat-dialog-title class="text-muted">{{data.title}}</h2>
<div mat-dialog-content class="mt-4" style="color: rgb(81, 76, 76);">
    <form (keydown)="withEnterKey($event)">
        {{data.message}}
    </form>
</div>
<div mat-dialog-actions class="d-flex justify-content-center mt-4">
    <button mat-button cdkFocusInitial (click)="onYesClick()" style="background-color: lightgray;">Da</button>
    <button mat-button cdkFocusInitial (click)="onNoClick()" style="background-color: lightgray;">Ne</button>
</div>