{% extends "base.html" %} {% block title %}Profile — Supavision{% endblock %} {% block content %} {# ── Account Info ── #}

Account

Email {{ profile_user.email }}
Name
Role {{ profile_user.role }}
Member since {{ profile_user.created_at }}
Last login {% if profile_user.last_login_at %} {{ profile_user.last_login_at }} {% else %} — {% endif %}
{# ── Change Password ── #}

Change Password

{% if password_error %}
{{ password_error }}
{% endif %} {% if password_success %}
{{ password_success }}
{% endif %}
Minimum 8 characters.
{# ── Active Sessions ── #}

Active Sessions

These are the devices currently signed in to your account.

{% if sessions %} {% for s in sessions %} {% endfor %}
IP Address Browser Created Last Active
{{ s.ip_address or '—' }} {{ s.user_agent[:50] if s.user_agent else '—' }}{% if s.user_agent and s.user_agent|length > 50 %}…{% endif %} {{ s.created_at }} {{ s.last_activity_at }} {% if s.id == current_session_id %} Current {% else %} {% endif %}
{% else %}

No active sessions found.

{% endif %}
{% endblock %}