{% extends "base.html" %} {% block title %}User Profile - DosVault{% endblock %} {% block content %}

User Profile

Manage your account settings and preferences

{{ current_user.username[0].upper() }}

{{ current_user.username }}

{{ current_user.email }}

{{ current_user.role.upper() }} USER
Joined: {{ current_user.created_at.strftime('%B %d, %Y') if current_user.created_at else 'Unknown' }}
{% if current_user.last_login %}
Last Login: {{ current_user.last_login.strftime('%B %d, %Y at %I:%M %p') }}
{% endif %}
Account Status: {% if current_user.is_active %}Active{% else %}Inactive{% endif %}
{% if current_user.role == "super" %}

Edit Profile Information

Update your username and email address.

Choose a unique username for your account.

A valid email address for account recovery.

{% endif %}

Change Password

Update your password to keep your account secure.

Password must be at least 6 characters long.

{% if current_user.role != "demo" %}

Your Statistics

❤️

{{ current_user.favorites|length }}

Favorite Games

⬇️

N/A

Downloads

{% endif %}

Quick Actions

🎮

Browse Games

Explore the library

{% if current_user.role != "demo" %}
❤️

My Favorites

View saved games

{% endif %} {% if current_user.role == "super" %}
⚙️

Admin Panel

System management

{% endif %}
{% endblock %}