mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-20 23:09:07 +00:00

* add primitive label policy component, routing * label policy, i18n * refactor policy grid * i18n * lint * cleanup i19n policy * rm failed events styling * fix detail layout padding, de i18n * remove unused translations
20 lines
892 B
HTML
20 lines
892 B
HTML
<app-detail-layout [backRouterLink]="['/iam']" [title]="'POLICY.LABEL.TITLE' | translate"
|
|
[description]="'POLICY.LABEL.DESCRIPTION' | translate">
|
|
|
|
<div class="content" *ngIf="labelData">
|
|
<mat-form-field class="form-field" appearance="outline">
|
|
<mat-label>{{'POLICY.LABEL.PRIMARYCOLOR' | translate}}</mat-label>
|
|
<input [(ngModel)]="labelData.primaryColor" matInput />
|
|
</mat-form-field>
|
|
|
|
<mat-form-field class="form-field" appearance="outline">
|
|
<mat-label>{{'POLICY.LABEL.SECONDARYCOLOR' | translate}}</mat-label>
|
|
<input [(ngModel)]="labelData.secondaryColor" matInput />
|
|
</mat-form-field>
|
|
</div>
|
|
|
|
<div class="btn-container">
|
|
<button (click)="savePolicy()" color="primary" type="submit"
|
|
mat-raised-button>{{ 'ACTIONS.SAVE' | translate }}</button>
|
|
</div>
|
|
</app-detail-layout> |