{% extends "layout.html" %} {% block content %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{% if category == 'success' %}{% elif category == 'error' %}{% else %}{% endif %} {{ message }}
{% endfor %}
{% endif %} {% endwith %}

Profile Picture

{{ user.username }}

Your default avatar is automatically generated based on your username.

Enter a direct link to an image

Account Information

Username {{ user.username }}
Email {{ user.email if user.email else 'Not provided' }} {% if user.email and not user.is_verified %} Unverified {% endif %}
Member Since {{ user.created_at|format_date }}
Account Type {{ user.account_type.value if user.account_type else 'Standard' }}

Email Settings

Used for notifications and account recovery
{% if user.email and not user.is_verified %}

Your email address is not verified.

Send Verification Email
{% elif not user.email %}

Adding an email enables account recovery and notifications.

{% endif %}

Security Settings

Change Password

Min. 8 characters

Two-Factor Authentication

{% if user.two_factor_enabled %}
Enabled
Your account is protected with 2FA
{% else %}
Disabled
Add extra security to your account
Enable 2FA {% endif %}
{% endblock %}