Files
listify/listify-client/src/app/templates/confirm-delete-dialog/confirm-delete-dialog.component.html
Bastian Wagner 537c7cbbee Initial
2026-06-09 09:45:33 +02:00

21 lines
608 B
HTML

<div class="delete-dialog-icon">
<mat-icon aria-hidden="true">delete_forever</mat-icon>
</div>
<h2 mat-dialog-title>Template loeschen?</h2>
<mat-dialog-content>
<p>
<strong>{{ data.templateName }}</strong> wird dauerhaft geloescht. Bereits daraus erstellte
Listen bleiben erhalten.
</p>
</mat-dialog-content>
<mat-dialog-actions align="end">
<button mat-button type="button" mat-dialog-close>Abbrechen</button>
<button mat-flat-button type="button" color="warn" [mat-dialog-close]="true">
<mat-icon aria-hidden="true">delete</mat-icon>
Loeschen
</button>
</mat-dialog-actions>