{% extends "base.html" %} {% block title %}Settings // Synapse-Cortex{% endblock %} {% block header %}Settings // Profile{% endblock %} {% block content %}
Profile
Name{{ user.full_name }}
Email{{ user.email }}
Role{{ user.role.value.replace('_',' ') }}
Tenant{{ user.tenant.name if user.tenant else '—' }}
Multi-Factor Authentication
{% if user.mfa_enabled %}
Enrolled
Disable MFA {% else %}
{% if user.mfa_required %}Required by admin — not yet enrolled{% else %}Not enabled{% endif %}
Enable MFA {% endif %}
Change Password
{% if error %}
{{ error }}
{% endif %} {% if success %}
{{ success }}
{% endif %}
{% endblock %}