{% include 'public/partials/header.html' %}
{% include 'usercp/partials/banner.html' %}
{% include 'usercp/partials/sidebar.html' %}
Security

Password, MFA & sessions

Protect your account and review where it is signed in.

Change password

Use a unique passphrase. Changing it revokes remembered logins.

Authenticator MFA

Require a time-based code after your password.

{% if $currentUser['mfa_enabled'] %}
Two-factor authentication is enabled.
{% else %}{% if $mfaSetupSecret %}
Authenticator secret{{ $mfaSetupSecret }}

Add this secret to any TOTP authenticator, then verify the current code.

{% else %}
{% endif %}{% endif %}{% if $recoveryCodes %}

Save these recovery codes now

{% foreach $recoveryCodes as $code %}{{ $code }}{% endforeach %}
{% endif %}

Active sessions

Revoke sessions you no longer recognize.

{% foreach $sessions as $session %}
{{ $session['ip_address'] }}{{ $session['user_agent'] }}Last active {{ $session['last_seen_at'] }}
{% endforeach %}
{% include 'public/partials/footer.html' %}