TelegramAktienBot/frontend/src/app/Views/profile/confirmation-dialog/confirmation-dialog.component.html
2022-04-20 11:19:48 +02:00

29 lines
687 B
HTML

<div class="containeer">
<h1 mat-dialog-title>Confirm Action</h1>
<div mat-dialog-content class="content">
<span>Are you sure, that you want to continue?</span>
</div>
<div mat-dialog-actions class="form-group footer-buttons">
<div class="inner">
<button
id="cancelButton"
class="btn btn-primary btn-block"
(click)="returnBack()"
[mat-dialog-close]="false"
>
Cancel
</button>
</div>
<div class="inner">
<button
id="okButton"
class="btn btn-danger btn-block"
(click)="confirm()"
[mat-dialog-close]="true"
>
Yes
</button>
</div>
</div>
</div>