15 lines
542 B
HTML
15 lines
542 B
HTML
{% extends "base.html" %}
|
|||
|
|
{% block title %}Two-factor authentication{% endblock %}
|
||
|
|
{% block content %}
|
||
|
|
<div class="auth-card">
|
||
|
|
<h1>Two-factor code</h1>
|
||
|
|
<p class="muted">Enter the 6-digit code from your authenticator app.</p>
|
||
|
|
<form method="post">
|
||
|
|
<label>Authentication code
|
||
|
|
<input type="text" name="code" inputmode="numeric" pattern="[0-9 ]*" maxlength="7" required autofocus autocomplete="one-time-code">
|
||
|
|
</label>
|
||
|
|
<button class="btn btn-primary btn-block" type="submit">Verify</button>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|