mirror of
https://github.com/zitadel/zitadel.git
synced 2025-07-19 14:18:34 +00:00

* docs, frameworks view * project select, integrate app page * fix search project autocomplete * framework autocomplete * framwork select component, integrate, mapping to oidc config * param * fix route handler * setname projectid context * app-create page without context * show description of app type, info section * redirects section * updatevalue observable * fix redirect uris section * i18n * setup config * backbutton behavior, cleanup * cleanup * lint * allow other framework jump off * dev mode warning * navigate to project * rm import * i18n, guide link * edit name dialog * show warning for duplicate name
24 lines
1.1 KiB
HTML
24 lines
1.1 KiB
HTML
<div class="quickstart-header">
|
|
<div class="quickstart-left">
|
|
<h2>{{ 'QUICKSTART.TITLE' | translate }}</h2>
|
|
<p class="description">{{ 'QUICKSTART.DESCRIPTION' | translate }}</p>
|
|
|
|
<div class="btn-wrapper">
|
|
<a mat-raised-button color="primary" [routerLink]="['/projects', 'app-create']">{{
|
|
'QUICKSTART.BTN_START' | translate
|
|
}}</a>
|
|
<a mat-stroked-button color="primary" href="https://zitadel.com/docs/sdk-examples/introduction" target="_blank">{{
|
|
'QUICKSTART.BTN_LEARNMORE' | translate
|
|
}}</a>
|
|
</div>
|
|
</div>
|
|
<div class="quickstart-card-wrapper">
|
|
<ng-container *ngFor="let framework of frameworks.slice(0, 18)">
|
|
<a [routerLink]="['/projects', 'app-create']" [queryParams]="{ framework: framework.id }" class="quickstart-card card">
|
|
<img class="dark-only" *ngIf="framework.imgSrcDark" [src]="framework.imgSrcDark" alt="{{ framework.title }}" />
|
|
<img class="light-only" *ngIf="framework.imgSrcLight" [src]="framework.imgSrcLight" alt="{{ framework.title }}" />
|
|
</a>
|
|
</ng-container>
|
|
</div>
|
|
</div>
|