mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-13 11:52:11 +00:00
* add csrf * caching * caching * caching * caching * security headers * csp and security headers * error handler csp * select user with display name * csp * user selection styling * username to loginname * regenerate grpc * regenerate * change to login name
30 lines
776 B
HTML
30 lines
776 B
HTML
{{template "main-top" .}}
|
|
|
|
|
|
<h1>{{t "MfaVerify.Title"}}</h1>
|
|
<p>{{t "MfaVerify.Description"}}</p>
|
|
|
|
<form action="{{ mfaVerifyUrl }}" method="POST">
|
|
|
|
{{ .CSRF }}
|
|
|
|
<input type="hidden" name="authRequestID" value="{{ .AuthReqID }}" />
|
|
<input type="hidden" name="mfaType" value="{{ .SelectedMfaProvider }}" />
|
|
|
|
<div class="fields">
|
|
<div class="field">
|
|
<label class="label" for="code">{{t "MfaVerify.Code"}}</label>
|
|
<input class="input" type="text" id="code" name="code" autocomplete="off" autofocus required>
|
|
</div>
|
|
</div>
|
|
|
|
{{ template "error-message" .}}
|
|
|
|
<div class="actions">
|
|
<button class="primary right" type="submit">{{t "Actions.Next"}}</button>
|
|
</div>
|
|
</form>
|
|
|
|
|
|
{{template "main-bottom" .}}
|
|
|