mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-18 16:22:13 +00:00

* some issues * passwordless, mfa * mfa, project fixes, login policy * user table, auth service, interceptor
22 lines
925 B
HTML
22 lines
925 B
HTML
<h1 mat-dialog-title>
|
|
<span class="title">{{data.titleKey | translate}}</span>
|
|
</h1>
|
|
<p class="desc">{{data.descriptionKey | translate}}</p>
|
|
<div mat-dialog-content>
|
|
<cnsl-form-field class="formfield">
|
|
<cnsl-label>{{data.labelKey | translate }} <span *ngIf="isPhone && phoneCountry">({{ phoneCountry }})</span>
|
|
</cnsl-label>
|
|
<input [formControl]="valueControl" cnslInput
|
|
(keydown.enter)="valueControl.valid ? closeDialogWithValue() : null" />
|
|
</cnsl-form-field>
|
|
</div>
|
|
<div mat-dialog-actions class="action">
|
|
<button cdkFocusInitial color="primary" mat-button class="ok-button" (click)="closeDialog()">
|
|
{{data.cancelKey | translate}}
|
|
</button>
|
|
|
|
<button [disabled]="valueControl.invalid" cdkFocusInitial color="primary" mat-raised-button class="ok-button"
|
|
(click)="closeDialogWithValue()">
|
|
{{data.confirmKey | translate}}
|
|
</button>
|
|
</div> |