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

Note Preferences

Choose your preferred font for note content

Sample Heading

This is how your notes will appear with the selected font. The quick brown fox jumps over the lazy dog.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

  • First item in a list
  • Second item with bold text
  • Third item with italic text
{% endblock %}