Account
The Account page (/dashboard/account) shows the signed-in user's identity, current sessions, and security actions. No permission gate — every authenticated user sees their own account.
Info cards
| Card | Content |
|---|---|
| Identity | Display name (falls back to user_id) + email |
| Last Login | UTC timestamp of last successful login, failed-login counter |
| Active Sessions | Session count + auth kind (password / token / SSO) |
Security actions
- Reset password — starts the password reset flow for the signed-in email
- Log out all sessions →
POST /dashboard/account/logout-all— revokes every session token for the user, forcing a fresh login everywhere
Recent Sessions
| Column | Description |
|---|---|
| Session | session_id in code format |
| Status | active / revoked / expired |
| Created | UTC timestamp |
| Expires | UTC timestamp |
| Last Seen | UTC timestamp or - |
| Revoked By | Actor who revoked the session, or - |
Use this panel to spot unexpected sessions or to confirm that a logout-all actually cleared everything.
Related
- Users — manage other users (admin only)