2019-12-27 22:34:10 +08:00
|
|
|
{% extends "single.html" %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
MFA
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block single_content %}
|
2020-05-12 05:22:06 +08:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body p-6">
|
2019-12-30 17:36:13 +08:00
|
|
|
|
2020-05-12 05:22:06 +08:00
|
|
|
<div class="mb-2">
|
2020-05-28 02:49:13 +08:00
|
|
|
Your account is protected with Two Factor Authentication. <br><br>
|
|
|
|
You will need to enter your 2FA authentication code.
|
2019-12-27 22:34:10 +08:00
|
|
|
</div>
|
|
|
|
|
2020-05-12 05:22:06 +08:00
|
|
|
<form method="post">
|
|
|
|
{{ otp_token_form.csrf_token }}
|
|
|
|
<input type="hidden" name="form-name" value="create">
|
|
|
|
|
|
|
|
<div class="font-weight-bold mt-5">Token</div>
|
2020-05-28 04:53:48 +08:00
|
|
|
<div class="small-text mb-3">Please enter the 2FA code from your 2FA authenticator</div>
|
2020-05-12 05:22:06 +08:00
|
|
|
|
|
|
|
{{ otp_token_form.token(class="form-control", autofocus="true") }}
|
|
|
|
{{ render_field_errors(otp_token_form.token) }}
|
2020-05-22 22:14:52 +08:00
|
|
|
<div class="form-check">
|
|
|
|
{{ otp_token_form.remember(class="form-check-input", id="remember") }}
|
|
|
|
<label class="form-check-label" for="remember">
|
|
|
|
{{ otp_token_form.remember.description }}
|
|
|
|
</label>
|
|
|
|
</div>
|
2020-05-28 02:49:13 +08:00
|
|
|
<button class="btn btn-success mt-2">Submit</button>
|
2020-05-12 05:22:06 +08:00
|
|
|
</form>
|
|
|
|
|
|
|
|
{% if enable_fido %}
|
2020-05-17 16:27:20 +08:00
|
|
|
<hr>
|
|
|
|
<div class="text-muted mt-5" style="margin-top: 1em;">
|
2020-05-12 05:22:06 +08:00
|
|
|
Having trouble with your authenticator? <br> <a href="{{ url_for('auth.fido') }}">Verify by your security
|
|
|
|
key</a>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2020-05-17 16:27:20 +08:00
|
|
|
|
|
|
|
<hr>
|
|
|
|
<div class="mt-5">
|
2020-05-28 02:49:13 +08:00
|
|
|
If you cannot access your authenticator application you can instead use a recovery code. <br>
|
|
|
|
<a href="{{ url_for('auth.recovery_route', next=next_url) }}">Use Recovery Code</a>
|
2020-05-17 16:27:20 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2020-05-12 05:22:06 +08:00
|
|
|
</div>
|
2019-12-27 22:34:10 +08:00
|
|
|
</div>
|
|
|
|
|
2020-05-28 02:49:13 +08:00
|
|
|
{% endblock %}
|