mirror of
https://github.com/zitadel/zitadel.git
synced 2025-02-25 18:55:27 -06:00
* init auto linking * prompt handling * working * translations * console * fixes * unify * custom texts * fix tests * linting * fix check of existing user * fix bg translation * set unspecified as default in the form
35 lines
1.6 KiB
HTML
35 lines
1.6 KiB
HTML
<form [formGroup]="form" class="option-form">
|
|
<cnsl-info-section class="auto-reg-info">
|
|
<div>
|
|
<p class="checkbox-desc">{{ 'IDP.OPTIONS.ISAUTOCREATION_DESC' | translate }}</p>
|
|
<mat-checkbox formControlName="isAutoCreation">{{ 'IDP.OPTIONS.ISAUTOCREATION' | translate }}</mat-checkbox>
|
|
</div>
|
|
</cnsl-info-section>
|
|
<cnsl-info-section class="auto-reg-info">
|
|
<div>
|
|
<p class="checkbox-desc">{{ 'IDP.OPTIONS.ISAUTOUPDATE_DESC' | translate }}</p>
|
|
<mat-checkbox formControlName="isAutoUpdate">{{ 'IDP.OPTIONS.ISAUTOUPDATE' | translate }}</mat-checkbox>
|
|
</div>
|
|
</cnsl-info-section>
|
|
<cnsl-info-section class="auto-reg-info">
|
|
<div>
|
|
<p class="checkbox-desc">{{ 'IDP.OPTIONS.ISCREATIONALLOWED_DESC' | translate }}</p>
|
|
<mat-checkbox formControlName="isCreationAllowed">{{ 'IDP.OPTIONS.ISCREATIONALLOWED' | translate }}</mat-checkbox>
|
|
</div>
|
|
</cnsl-info-section>
|
|
<cnsl-info-section class="auto-reg-info">
|
|
<div>
|
|
<p class="checkbox-desc">{{ 'IDP.OPTIONS.ISLINKINGALLOWED_DESC' | translate }}</p>
|
|
<mat-checkbox formControlName="isLinkingAllowed">{{ 'IDP.OPTIONS.ISLINKINGALLOWED' | translate }}</mat-checkbox>
|
|
</div>
|
|
</cnsl-info-section>
|
|
<cnsl-info-section class="auto-reg-info">
|
|
<p class="checkbox-desc">{{ 'IDP.OPTIONS.AUTOLINKING_DESC' | translate }}</p>
|
|
<mat-select formControlName="autoLinking">
|
|
<mat-option *ngFor="let linkingType of linkingTypes" [value]="linkingType">
|
|
{{ 'IDP.OPTIONS.AUTOLINKINGTYPE.' + linkingType | translate }}
|
|
</mat-option>
|
|
</mat-select>
|
|
</cnsl-info-section>
|
|
</form>
|