{% 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 {{ user.email }}
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 verification and notifications.

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 %}