{% extends "base.html" %} {% block title %}Account โ€” MartinhalApprovalFlow{% endblock %} {% block content %}

Account

Signed in as {{ user.username }}{% if user.email %} ยท {{ user.email }}{% endif %}

Two-factor authentication (MFA)

{% if user.mfa_secret %}

enabled

Signing in requires your password and a 6-digit code from your authenticator app.

{% elif setup_secret %}

1 โ€” Scan this QR code with Google Authenticator, Authy, 1Password, or any TOTP app. If you can't scan, enter the secret manually.

Secret: {{ setup_secret }}

2 โ€” Enter the 6-digit code the app shows to confirm.

{% else %}

disabled

Add a second sign-in step: your password plus a 6-digit code from an authenticator app on your phone.

{% endif %}
{% endblock %}