mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-26 06:40:50 +00:00
13 lines
565 B
HTML
13 lines
565 B
HTML
<span class="title" mat-dialog-title>{{data.titleKey | translate: data.titleParam}}</span>
|
|
<div mat-dialog-content>
|
|
<p class="desc"> {{data.descriptionKey | translate: data.descriptionParam}}</p>
|
|
</div>
|
|
<div mat-dialog-actions class="action">
|
|
<button *ngIf="data.cancelKey" mat-button (click)="closeDialog()">
|
|
{{data.cancelKey | translate}}
|
|
</button>
|
|
<span class="fill-space"></span>
|
|
<button color="warn" mat-raised-button class="ok-button" (click)="closeDialogWithSuccess()">
|
|
{{data.confirmKey | translate}}
|
|
</button>
|
|
</div> |