{% extends "base.html" %} {% block title %}Account{% endblock %} {% block content %}

{{ current_user.username }}

{{ current_user.email }} · role {{ current_user.role }}

Profile avatar

{% if current_user.has_avatar %} Current avatar {% else %} {{ current_user.initials }} {% endif %}
{{ avatar_form.csrf_token }}
{{ avatar_form.avatar.label }}{{ avatar_form.avatar(accept="image/*") }}
PNG, JPG, GIF or WebP. Squared and resized to {{ 256 }}×{{ 256 }} automatically. Max 2 MB.
{{ avatar_form.submit(class_="btn btn-primary") }} {% if current_user.has_avatar %} {% endif %}
{% if current_user.has_avatar %}
{% endif %}

Change password

{{ password_form.csrf_token }}
{{ password_form.current_password.label }}{{ password_form.current_password(autocomplete="current-password") }}
{{ password_form.new_password.label }}{{ password_form.new_password(autocomplete="new-password") }}
{{ password_form.confirm.label }}{{ password_form.confirm(autocomplete="new-password") }}
{{ password_form.submit(class_="btn btn-primary") }}

Multi-factor authentication

{{ 'enabled' if current_user.mfa_enabled else 'disabled' }}
{% if current_user.mfa_enabled %}

MFA is currently active on your account. You'll be prompted for a 6-digit code on every sign-in.

{% else %}

MFA is currently not configured. Strongly recommended for admin accounts.

Set up MFA now {% endif %}
{% endblock %}