mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-15 17:08:20 +00:00
43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
{{template "main-top" .}}
|
|
|
|
<div class="lgn-head">
|
|
{{ template "user-profile" . }}
|
|
|
|
<p>{{t "EmailVerification.Description"}}</p>
|
|
</div>
|
|
|
|
<form action="{{ mailVerificationUrl }}" method="POST">
|
|
|
|
{{ .CSRF }}
|
|
|
|
<input type="hidden" name="authRequestID" value="{{ .AuthReqID }}" />
|
|
<input type="hidden" name="userID" value="{{ .UserID }}" />
|
|
|
|
<div class="fields">
|
|
<label class="lgn-label" for="code">{{t "EmailVerification.Code"}}</label>
|
|
<input class="lgn-input" type="text" id="code" name="code" autocomplete="off" autofocus required>
|
|
</div>
|
|
|
|
{{ template "error-message" .}}
|
|
|
|
<div class="lgn-actions lgn-reverse-order">
|
|
<button type="submit" id="submit-button" name="resend" value="false"
|
|
class="lgn-primary lgn-raised-button">{{t "Actions.Next"}}
|
|
</button>
|
|
|
|
<span class="fill-space"></span>
|
|
|
|
{{ if .UserID }}
|
|
<button type="submit" name="resend" value="true" class="lgn-stroked-button lgn-primary" formnovalidate>{{t "Actions.Resend"}}</button>
|
|
{{ end }}
|
|
|
|
<a class="lgn-icon-button lgn-left-action" name="resetlinking" value="true" href="{{ loginUrl }}"
|
|
formnovalidate>
|
|
<i class="lgn-icon-arrow-left-solid"></i>
|
|
</a>
|
|
</div>
|
|
</form>
|
|
<script src="{{ resourceUrl "scripts/form_submit.js" }}"></script>
|
|
<script src="{{ resourceUrl "scripts/default_form_validation.js" }}"></script>
|
|
|
|
{{template "main-bottom" .}} |