aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/alert-dialog/alert-dialog.component.html
blob: 84793260f435a20e86e669877d95bbe5dacc3ee5 (plain) (blame)
1
2
3
4
5
6
7
8
9
<h2 mat-dialog-title>{{data.title}}</h2>
<div mat-dialog-content class="mt-4 text-offwhite">
    <form (keydown)="withEnterKey($event)">
        {{data.message}}
    </form>
</div>
<div mat-dialog-actions class="d-flex justify-content-center mt-4">
    <button mat-raised-button cdkFocusInitial (click)="onOkClick()" color="basic">OK</button>
</div>