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

* fix: remove unnecessary cancel button as cancel is not possible * fix: add missing tranlation * fix: add missing tranlation * docs: missing translations --------- Co-authored-by: Silvan <silvan.reusser@gmail.com>
26 lines
714 B
HTML
26 lines
714 B
HTML
{{template "main-top" .}}
|
|
|
|
<div class="lgn-head">
|
|
<h1>{{t "EmailVerificationDone.Title"}}</h1>
|
|
{{ template "user-profile" . }}
|
|
|
|
<p>{{t "EmailVerificationDone.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">
|
|
<span class="fill-space"></span>
|
|
<button class="lgn-raised-button lgn-primary" type="submit">
|
|
{{if .AuthReqID }} {{t "EmailVerificationDone.NextButtonText"}} {{else}}
|
|
{{t "EmailVerificationDone.LoginButtonText"}} {{end}}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
|
|
{{template "main-bottom" .}}
|