mirror of
https://github.com/zitadel/zitadel.git
synced 2025-07-19 11:48:34 +00:00
13 lines
466 B
HTML
13 lines
466 B
HTML
![]() |
<span class="title" mat-dialog-title>{{data.titleKey | translate}}</span>
|
||
|
<div mat-dialog-content>
|
||
|
<p class="desc"> {{data.descriptionKey | translate}}</p>
|
||
|
</div>
|
||
|
<div mat-dialog-actions class="action">
|
||
|
<button mat-button (click)="closeDialog()">
|
||
|
{{data.cancelKey | translate}}
|
||
|
</button>
|
||
|
|
||
|
<button color="warn" mat-raised-button class="ok-button" (click)="closeDialogWithSuccess()">
|
||
|
{{data.confirmKey | translate}}
|
||
|
</button>
|
||
|
</div>
|