{% 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.strftime('%B %d, %Y') }}
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 %}