{% extends "account/base.html" %} {% load i18n %} {% block head_title %}{% trans "Account Details" %}{% endblock %} {% block content %}

Account Details

{% trans "Email Addresses" %}

{% if user.emailaddress_set.all %}

{% trans 'The following email addresses are associated with your account:' %}

{% csrf_token %} {% for emailaddress in user.emailaddress_set.all %}
{% endfor %}
{% else %}

{% trans 'Warning:'%} {% trans "You do not have any email addresses set up. Please add an email address to receive notifications, reset your password, and perform other account-related actions." %}

{% endif %}

{% trans "Add Email Address" %}

{% csrf_token %} {% load bootstrap4 %} {% bootstrap_form form %}

{% trans "Change Password" %}

{% trans "Change password" %}

{% trans "Federated Login" %}

You can connect third-party accounts to log into this site with them.

{% trans "Manage" %} {% endblock %} {% block extra_body %} {% endblock %}