2023-04-23 10:21:21 +00:00
|
|
|
{{template "user/settings/layout_head" (dict "ctxData" . "pageClass" "user settings twofa")}}
|
|
|
|
<div class="user-setting-content">
|
2017-03-15 22:39:38 +00:00
|
|
|
<h4 class="ui top attached header">
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "settings.twofa_enroll"}}
|
2017-03-15 22:39:38 +00:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2022-06-27 20:58:46 +00:00
|
|
|
<p>{{.locale.Tr "settings.scan_this_image"}}</p>
|
2017-03-15 22:39:38 +00:00
|
|
|
<img src="{{.QrUri}}" alt="{{.TwofaSecret}}">
|
2022-06-27 20:58:46 +00:00
|
|
|
<p>{{.locale.Tr "settings.or_enter_secret" .TwofaSecret}}
|
|
|
|
<p>{{.locale.Tr "settings.then_enter_passcode"}}
|
2017-03-15 22:39:38 +00:00
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="inline required field {{if .Err_Passcode}}error{{end}}">
|
2022-06-27 20:58:46 +00:00
|
|
|
<label for="passcode">{{.locale.Tr "passcode"}}</label>
|
2017-03-15 22:39:38 +00:00
|
|
|
<input id="passcode" name="passcode" autofocus required>
|
2017-01-16 02:14:29 +00:00
|
|
|
</div>
|
2017-03-15 22:39:38 +00:00
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
2022-06-27 20:58:46 +00:00
|
|
|
<button class="ui green button">{{.locale.Tr "auth.verify"}}</button>
|
2017-03-15 22:39:38 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2017-01-16 02:14:29 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-04-23 10:21:21 +00:00
|
|
|
{{template "user/settings/layout_footer" .}}
|