{% extends "layout.html" %} {% block title %}{{ _('User Profile') }}{% endblock %} {% block content %}
{% if user.avatar_url %} Avatar {% else %}
{% endif %}

{{ user.nickname or user.username }}

@{{ user.username }}

{{ _('Two-Factor Auth (TOTP)') }}
{% if user.totp_enabled %}

{{ _('TOTP is currently enabled for your account.') }}

{% else %}

{{ _('Enhance your account security by enabling Two-Factor Authentication.') }}

{% endif %}
{{ _('Profile Settings') }}
{{ _('General Information') }}
{{ _('Preferences') }}
{{ _('Notifications') }}
{{ _('Profile Avatar') }}
{{ _('Change Password') }}
{% endblock %}