{% extends "base.html" %} {% block title %}Profile - Hermetic Suite{% endblock %} {% block content %}

Account Information

Username: {{ user.username }}
Role: {{ 'Admin' if user.is_admin else 'User' }}
Status: {{ 'Active' if user.is_active else 'Disabled' }}
Last Login: {{ user.last_login.strftime('%Y-%m-%d %H:%M') if user.last_login else 'N/A' }}
Account Created: {{ user.created_at.strftime('%Y-%m-%d') if user.created_at else 'N/A' }}

Email Settings

Used for receiving alert notifications from plugins
{% if user.email %}
Verification Status: {% if user.email_verified %} Verified {% else %} Not Verified (Email verification coming soon) {% endif %}
{% endif %}

Change Password

Minimum 8 characters
{% endblock %}