app-MAIL-temp/templates/dashboard/mfa_setup.html

39 lines
1.4 KiB
HTML
Raw Permalink Normal View History

{% extends "default.html" %}
{% set active_page = "setting" %}
{% block title %}MFA Setup{% endblock %}
{% block head %}
2020-02-04 10:53:25 +01:00
<script src="{{ url_for('static', filename='node_modules/qrious/dist/qrious.min.js') }}"></script>
{% endblock %}
{% block default_content %}
2020-05-11 23:22:06 +02:00
<div class="card">
<div class="card-body">
<h1 class="h3">Two Factor Authentication - TOTP</h1>
<p>
You will need to use a 2FA application like Proton Pass or Aegis on your phone or PC and scan the following QR Code:
2020-05-11 23:22:06 +02:00
</p>
<canvas id="qr"></canvas>
<script>
(function () {
var qr = new QRious({
element: document.getElementById('qr'),
value: '{{otp_uri}}'
});
})();
</script>
<div class="mt-3 mb-2">Or you can manually enter the following secret key:</div>
2020-05-11 23:22:06 +02:00
<input class="form-control" disabled value="{{ current_user.otp_secret }}">
<form method="post">
{{ otp_token_form.csrf_token }}
<div class="font-weight-bold mt-5">Token</div>
2020-05-29 14:51:56 +02:00
<div class="small-text">Please enter the 6-digit number displayed in your authenticator app.</div>
2020-05-11 23:22:06 +02:00
{{ otp_token_form.token(class="form-control", placeholder="") }}
{{ render_field_errors(otp_token_form.token) }}
2020-05-29 14:51:56 +02:00
<button class="btn btn-lg btn-success mt-2">Submit</button>
2020-05-11 23:22:06 +02:00
</form>
</div>
</div>
{% endblock %}