2017-01-15 21:14:29 -05:00
|
|
|
{{template "base/head" .}}
|
2020-11-30 23:00:14 -05:00
|
|
|
<div class="page-content user signin">
|
2017-01-15 21:14:29 -05:00
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<h3 class="ui top attached header">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "twofa"}}
|
2017-01-15 21:14:29 -05:00
|
|
|
</h3>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<div class="required inline field">
|
2022-06-27 16:58:46 -04:00
|
|
|
<label for="passcode">{{.locale.Tr "passcode"}}</label>
|
2021-07-17 20:06:22 -04:00
|
|
|
<input id="passcode" name="passcode" type="text" autocomplete="one-time-code" inputmode="numeric" pattern="[0-9]*" autofocus required>
|
2017-01-15 21:14:29 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
2022-06-27 16:58:46 -04:00
|
|
|
<button class="ui green button">{{.locale.Tr "auth.verify"}}</button>
|
|
|
|
<a href="{{AppSubUrl}}/user/two_factor/scratch">{{.locale.Tr "auth.use_scratch_code" | Str2html}}</a>
|
2017-01-15 21:14:29 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|