2017-01-15 21:14:29 -05:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 17:56:10 -05:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user signin">
|
2017-01-15 21:14:29 -05:00
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
2024-03-06 09:20:26 -05:00
|
|
|
<form class="ui form tw-max-w-2xl tw-m-auto" action="{{.Link}}" method="post">
|
2017-01-15 21:14:29 -05:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<h3 class="ui top attached header">
|
2023-09-25 04:56:50 -04:00
|
|
|
{{ctx.Locale.Tr "twofa"}}
|
2017-01-15 21:14:29 -05:00
|
|
|
</h3>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "base/alert" .}}
|
2024-03-06 09:20:26 -05:00
|
|
|
<div class="required field">
|
2023-09-25 04:56:50 -04:00
|
|
|
<label for="passcode">{{ctx.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">
|
2023-09-25 04:56:50 -04:00
|
|
|
<button class="ui primary button">{{ctx.Locale.Tr "auth.verify"}}</button>
|
2024-02-22 13:05:47 -05:00
|
|
|
<a href="{{AppSubUrl}}/user/two_factor/scratch">{{ctx.Locale.Tr "auth.use_scratch_code"}}</a>
|
2017-01-15 21:14:29 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|