timemanager/frontend/src/app/missed-schedules/missed-schedule-forget-confirmation-dialog/missed-schedule-forget-confirmation-dialog.component.html
2023-10-29 11:16:48 +01:00

10 lines
442 B
HTML

<h1 mat-dialog-title>Forget All Missed Schedules </h1>
<div mat-dialog-content>
<p>Are you sure you want to forget all missed schedules? This would delete <b>{{this.missedSchedules.length}}</b> schedules.</p>
<p>This <b>cannot</b> be undone!</p>
</div>
<div mat-dialog-actions align="end">
<button mat-raised-button (click)="cancel()">Cancel</button>
<button mat-raised-button color="warn" (click)="confirm()">Confirm</button>
</div>