{% extends "layout.html" %} {% block content %}

My Profile

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

Profile Picture

{{ user.username }}

{{ user.username }}

{{ user.role.value if user.role else 'Team Member' }}

Change Avatar

Your default avatar is generated based on your username.

Account Information

Username {{ user.username }}
Email {% if user.email %} {{ user.email }} {% if not user.is_verified %} Unverified {% endif %} {% else %} Not provided {% endif %}
Role {{ user.role.value if user.role else 'Team Member' }}
Company {{ user.company.name if user.company else 'N/A' }}
Team {{ user.team.name if user.team else 'No Team' }}
Member Since {{ user.created_at.strftime('%B %d, %Y') }}

Email Settings

This email address is used for account recovery and notifications.
{% if user.email and not user.is_verified %}
âš ī¸ Your email address is not verified. Send Verification Email
{% elif not user.email %}
â„šī¸ Adding an email address enables account recovery and important notifications.
{% endif %}

Change Password

Choose a strong password with at least 8 characters.

Two-Factor Authentication

{% if user.two_factor_enabled %}
✅ Enabled

Two-factor authentication adds an extra layer of security to your account.

{% else %}
❌ Disabled

Enable two-factor authentication to add an extra layer of security to your account.

Enable 2FA {% endif %}
{% endblock %}