{% extends 'uniauth/base-site.html' %} {% block head %} Uniauth | Settings {% endblock %} {% block content %}
Account Settings
{% if email_resent or email_added or password_changed %}
{% if email_resent %} Verification email resent to {{ email_resent }}. {% elif email_added %} Email successfully added. We've sent a verification email to {{ email_added }}. {% elif password_changed %} Password successfully updated. {% endif %}
{% endif %}
Emails
{% csrf_token %}
  • {{ request.user.email }} Primary
  • {% for email in request.user.profile.linked_emails.all %} {% if email.address != request.user.email %}
  • {{ email.address }} {% if not email.is_verified %} Pending {% endif %} {% if not email.is_verified %} {% endif %}
  • {% endif %} {% endfor %}
{% csrf_token %} {% if add_email_form.errors %}
{% for key, value in add_email_form.errors.items %} {% if forloop.counter == 1 %} {{ value.as_text|slice:"2:" }} {% endif %} {% endfor %}
{% endif %}
{% csrf_token %} {% if change_email_form.errors %}
{% for key, value in change_email_form.errors.items %} {% if forloop.counter == 1 %} {{ value.as_text|slice:"2:" }} {% endif %} {% endfor %}
{% endif %}
{% if institutions|length > 0 %}
Linked Accounts
    {% for account in request.user.profile.accounts.all|dictsort:"institution.name" %} {% endfor %}
{% endif %}
Change Password
{% csrf_token %} {% if change_password_form.errors %}
{% for key, value in change_password_form.errors.items %} {% if forloop.counter == 1 %} {{ value.as_text|slice:"2:" }} {% endif %} {% endfor %}
{% endif %}
Make sure it's at least 8 characters. Numbers and special characters recommended.
Enter the same password again, to confirm it.
{% endblock %} {% block script %} {% endblock %}