Files

26 lines
960 B
Handlebars
Raw Permalink Normal View History

2017-01-15 21:14:29 -05:00
{{template "base/head" .}}
<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">
<form class="ui form tw-max-w-2xl tw-m-auto" action="{{.Link}}" method="post">
2017-01-15 21:14:29 -05:00
<h3 class="ui top attached header">
{{ctx.Locale.Tr "twofa"}}
2017-01-15 21:14:29 -05:00
</h3>
<div class="ui attached segment">
{{template "base/alert" .}}
<div class="required field">
<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-15 21:14:29 -05:00
</div>
<div class="inline field">
<button class="ui primary button">{{ctx.Locale.Tr "auth.verify"}}</button>
<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" .}}