{% extends "base.html" %} {% block content %}
{% if request.query_params.message %}
{{ request.query_params.message }}
{% endif %} {% if error %}
{{ error }}
{% endif %}
{% if user.picture %} Profile Picture {% else %}
{{ user.username[0]|upper }}
{% endif %}
{% if user.picture %}
{% endif %}

JPG/PNG only

{{ user.username }}

{{ user.email }}

Account Type

{% if user.is_admin %}Administrator{% else %}User{% endif %}

Member Since

{{ user.created_at.strftime('%Y-%m-%d') }}

Account Settings

Username

Change your username (must be unique)

Change Password

Update your password to keep your account secure.

Change Password

Privacy Settings

Control who can see your profile information.

Manage Privacy Settings

Danger Zone

Permanently delete your account and all of your data.

{% endblock %}