{% extends "base.html" %} {% block title %}{{ _('Account Settings') }}{% endblock %} {% block content %}

{{ _('Account Settings') }}

{%- include "flash.html" %} {# Show flash messages #}

{{ _('Logout') }}

{{ _('Your Username') }}: {{ current_user.username }}
{{ _('Your Role') }}: {{ current_user.role }}

{{ form.csrf_token }} {{ form.password.label }} {{ form.password(placeholder=_("Leave empty to keep password unchanged")) }} {{ form.password_retype.label }} {{ form.password_retype(placeholder=_("Leave empty to keep password unchanged")) }} {{ form.api_key.label }}
{{ form.api_key(readonly=readonly) }} {{ form.api_key_generate }}
{{ form.submit }}
{% endblock %}