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

{{ user.username }}

{{ user.email }}

Account Type

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

Member Since

{{ user.created_at.split(' ')[0] }}

Account Settings

Change Password

Update your password to keep your account secure.

Danger Zone

Permanently delete your account and all of your data.

{% endblock %}