mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-20 22:41:56 +00:00

* permission restriction, member, login i18n input borders, secondary text * add touched js
16 lines
581 B
HTML
16 lines
581 B
HTML
<div class="spinner-wr">
|
|
<mat-spinner diameter="30" *ngIf="loading" color="primary"></mat-spinner>
|
|
</div>
|
|
<h2>{{ 'SETTING.SECRETS.TITLE' | translate }}</h2>
|
|
|
|
<div class="generators">
|
|
<cnsl-card class="generator" [nomargin]="true" *ngFor="let gen of AVAILABLEGENERATORS">
|
|
<div class="row">
|
|
<h3 class="title">{{ 'SETTING.SECRETS.TYPE.' + gen | translate }}</h3>
|
|
<button mat-icon-button (click)="openGeneratorDialog(gen)" [disabled]="(['iam.write'] | hasRole | async) === false">
|
|
<i class="las la-pen"></i>
|
|
</button>
|
|
</div>
|
|
</cnsl-card>
|
|
</div>
|