mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-11 22:58:32 +00:00

* feat: add possibility to ignore username errors on first login screen * console changes * fix: handling of unknown usernames (#3445) * fix: handling of unknown usernames * fix: handle HideLoginNameSuffix on unknown users * feat: add default redirect uri on login policy (#3607) * feat: add default redirect uri on login policy * fix tests * feat: Console login policy default redirect (#3613) * console default redirect * placeholder * validate default redirect uri * allow empty default redirect uri Co-authored-by: Max Peintner <max@caos.ch> * remove wonrgly cherry picked migration Co-authored-by: Max Peintner <max@caos.ch>
29 lines
768 B
HTML
29 lines
768 B
HTML
{{template "main-top" .}}
|
|
|
|
<div class="lgn-head">
|
|
<h1>{{t "InitUserDone.Title"}}</h1>
|
|
|
|
{{ template "user-profile" . }}
|
|
|
|
<p>{{t "InitUserDone.Description"}}</p>
|
|
</div>
|
|
|
|
<form action="{{ loginUrl }}" method="POST">
|
|
|
|
{{ .CSRF }}
|
|
|
|
<input type="hidden" name="authRequestID" value="{{ .AuthReqID }}" />
|
|
<input type="hidden" name="orgID" value="{{ .OrgID }}" />
|
|
|
|
<div class="lgn-actions lgn-reverse-order">
|
|
<button class="lgn-raised-button lgn-primary" type="submit">{{t "InitUserDone.NextButtonText"}}</button>
|
|
<span class="fill-space"></span>
|
|
<a class="lgn-stroked-button lgn-primary" href="{{ loginUrl }}">
|
|
{{t "InitUserDone.CancelButtonText"}}
|
|
</a>
|
|
</div>
|
|
</form>
|
|
|
|
|
|
{{template "main-bottom" .}}
|