{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Authentic - Account Management" %} {% endblock %} {% block content %}

{% trans "Account Management" %}

{% trans "Profile" %}

{% if profile %}
{% for key, values in profile %}
{{ key|capfirst }}
{% if values|length == 1 %}{{ values.0 }}{% else %}
    {% for value in values %}
  • {{ value }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if allow_email_change %}

{% trans "Change email" %}

{% endif %} {% if allow_profile_edit %}

{% trans "Edit profile" %}

{% endif %} {% if allow_account_deletion %}

{% trans "Delete profile" %}

{% endif %}

{% trans "Credentials" %}

{% for html_block in frontends_block %} {{ html_block|safe }} {% endfor %} {% if federation_management %}

{% trans "Federation management" %}

{% endif %}

{% trans "Back" %}

{% endblock %}