mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-21 06:31:05 +00:00

* service, sidenav, i18n, dialog * detail layout, user detail * metadata dialog from * dialog * features * formarray * metadata component * comp * user metadata refresh * use formarray, control, bulk save * metadata revert, has feature directive * lint * lint * typo * info row user, warn color optim * card cleanup, actions for user detail * project, org, user, app rehaul * lint * scss * digit fix * features and project grid rehaul * info-section layout, org domain info * readd palette scss * add svg email warn * missing translation * rm unused ts * lockoutpolicy * check for lockout feature
36 lines
1.6 KiB
HTML
36 lines
1.6 KiB
HTML
<div class="next-steps">
|
|
<div class="title-row">
|
|
<h5>{{'NEXTSTEPS.TITLE' | translate}}</h5>
|
|
<i class="las la-shoe-prints"></i>
|
|
</div>
|
|
<div class="row">
|
|
<ng-container *ngFor="let link of links">
|
|
<ng-template *ngIf="link.withRole" appHasRole [appHasRole]="link.withRole">
|
|
<div class="step card">
|
|
<ng-content select="[icon]"></ng-content>
|
|
<h6>{{ link.i18nTitle | translate }}</h6>
|
|
<p>{{link.i18nDesc | translate}}</p>
|
|
<span class="fill-space"></span>
|
|
<a *ngIf="link.routerLink" [routerLink]="link.routerLink" color="primary" mat-stroked-button>
|
|
{{'ACTIONS.CONTINUE' | translate}}
|
|
</a>
|
|
<a *ngIf="link.href" [href]="link.href" target="_blank" color="primary" mat-stroked-button>
|
|
{{'ACTIONS.CONTINUE' | translate}}
|
|
</a>
|
|
</div>
|
|
</ng-template>
|
|
<div class="step card" *ngIf="!link.withRole">
|
|
<i *ngIf="link.iconClasses" class="{{link.iconClasses}}"></i>
|
|
<h6>{{ link.i18nTitle | translate }}</h6>
|
|
<p>{{link.i18nDesc | translate}}</p>
|
|
<span class="fill-space"></span>
|
|
<a *ngIf="link.routerLink" [routerLink]="link.routerLink" mat-stroked-button>
|
|
{{'ACTIONS.CONTINUE' | translate}}
|
|
</a>
|
|
<a *ngIf="link.href" [href]="link.href" target="_blank" mat-stroked-button>
|
|
{{'ACTIONS.CONTINUE' | translate}}
|
|
</a>
|
|
</div>
|
|
</ng-container>
|
|
</div>
|
|
</div> |