20 lines
664 B
HTML
20 lines
664 B
HTML
{% extends "base.html" %}
|
|||
|
|
{% block title %}Verify identity{% endblock %}
|
||
|
|
{% block content %}
|
||
|
|
<div class="auth-shell">
|
||
|
|
<div class="auth-card">
|
||
|
|
<div class="auth-prompt">verify</div>
|
||
|
|
<h1>Two-factor authentication</h1>
|
||
|
|
<p class="auth-sub">Enter the 6-digit code from your authenticator app.</p>
|
||
|
|
<form method="post" class="form" novalidate>
|
||
|
|
{{ form.csrf_token }}
|
||
|
|
<div>
|
||
|
|
{{ form.code.label }}
|
||
|
|
{{ form.code(autocomplete="one-time-code", inputmode="numeric", pattern="[0-9]{6}", autofocus=True, maxlength=6) }}
|
||
|
|
</div>
|
||
|
|
{{ form.submit(class_="btn btn-primary btn-block") }}
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|