2017-01-16 03:14:29 +01:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 23:56:10 +01:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user signin">
|
2017-01-16 03:14:29 +01:00
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
2024-03-06 15:20:26 +01:00
|
|
|
<form class="ui form tw-max-w-2xl tw-m-auto" action="{{.Link}}" method="post">
|
2017-01-16 03:14:29 +01:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<h3 class="ui top attached header">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "twofa"}}
|
2017-01-16 03:14:29 +01:00
|
|
|
</h3>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "base/alert" .}}
|
2024-03-06 15:20:26 +01:00
|
|
|
<div class="required field">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="passcode">{{ctx.Locale.Tr "passcode"}}</label>
|
2021-07-18 02:06:22 +02:00
|
|
|
<input id="passcode" name="passcode" type="text" autocomplete="one-time-code" inputmode="numeric" pattern="[0-9]*" autofocus required>
|
2017-01-16 03:14:29 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="inline field">
|
2023-09-25 10:56:50 +02:00
|
|
|
<button class="ui primary button">{{ctx.Locale.Tr "auth.verify"}}</button>
|
2024-03-10 09:51:19 +01:00
|
|
|
<a href="{{AppSubUrl}}/user/two_factor/scratch">{{ctx.Locale.Tr "auth.use_scratch_code"}}</a>
|
2017-01-16 03:14:29 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|