{% extends "base.html" %} {% block title %}Profile - PacificPy App{% endblock %} {% block content %}

User Profile

{{ user.username }}

Email: {{ user.email }}
User ID: {{ user.id }}
Member since: {{ user.created_at | format_date }}
Status: {% if user.is_active %} Active {% else %} Inactive {% endif %}

Account Settings

Manage your account settings and preferences.

Settings
Security

Update your password and security settings.

Security
{% endblock %}