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_scratch"}}
|
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="token">{{ctx.Locale.Tr "auth.scratch_code"}}</label>
|
2017-04-07 09:07:37 -04:00
|
|
|
<input id="token" name="token" type="text" autocomplete="off" 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>
|
2017-01-15 21:14:29 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|