Update Display Name
{% if user.is_verified %}
⚠️ Changing your display name will result in losing your verification status.
{% endif %}
Public User Directory
Add Your Bio
Change Username
{% if user.is_verified %}
⚠️ Changing your username will result in losing your verification status.
{% endif %}
Two-Factor Authentication
{% if user.totp_secret %}
{% else %}
{% endif %}
Change Password
Delete Account
⚠️ Deleting your account is a permanent action that cannot be undone!
2FA Enabled
{{ two_fa_count }}
{{ two_fa_percentage | round(2) }}%
PGP Enabled
{{ pgp_key_count }}
{{ pgp_key_percentage | round(2) }}%
All Users
{% if all_users %}
{% for user in all_users %}
{{ user.primary_username }}
Display Name: {{ user.display_name or 'No display name' }}
Verified: {{ "✅ Yes" if user.is_verified else "👎 No" }}
Admin: {{ "✅ Yes" if user.is_admin else "👎 No" }}
{% endfor %}
{% else %}
No users found.
{% endif %}