{% extends "base.html" %} {% block title %}Set up MFA{% endblock %} {% block content %}

Enable multi-factor authentication

Scan the QR code with your authenticator (Google Authenticator, Authy, 1Password, …) and enter the 6-digit code to confirm.

MFA QR code

Manual key (if you can't scan):

{{ secret }}

{{ form.csrf_token }}
{{ form.code.label }} {{ form.code(autocomplete="one-time-code", inputmode="numeric", pattern="[0-9]{6}", maxlength=6) }}
Enter the current 6-digit code shown in your authenticator.
{{ form.submit(class_="btn btn-primary") }} Cancel
{% endblock %}