Account Information
Username: {{ current_user.username }}
Email: {{ current_user.email }}
Role: {{ current_user.role }}
Change Password
Two-Factor Authentication
Status:
{{ "Enabled" if current_user.mfa_enabled else "Disabled" }}
{% if current_user.is_mfa_required() %}
Required
{% endif %}
{% if not current_user.mfa_enabled %}
Setup 2FA
{% endif %}
{% if current_user.mfa_secret %}
{% if current_user.mfa_enabled and current_user.is_mfa_required() and current_user.role != 'GlobalAdmin' %}
{% else %}
{% endif %}
{% endif %}
{% if current_user.is_mfa_required() and current_user.role != 'GlobalAdmin' %}
Note: MFA is required for your account and cannot be disabled. Contact your administrator if you need to disable MFA.
{% endif %}