mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-27 13:20:51 +00:00

* fix: login ui for v2 * a color * footer Co-authored-by: Livio Amstutz <livio.a@gmail.com>
29 lines
728 B
HTML
29 lines
728 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" href="{{ loginUrl }}">
|
|
{{t "InitUserDone.CancelButtonText"}}
|
|
</a>
|
|
</div>
|
|
</form>
|
|
|
|
{{template "main-bottom" .}}
|