app-MAIL-temp/templates/auth/mfa.html

48 lines
1.6 KiB
HTML
Raw Normal View History

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