{% extends "account/base.html" %} {% load crispy_forms_tags %} {% block head_title %} - Email{% endblock %} {% block content %}

Email

{% if user.emailaddress_set.exists %}

The following email addresses are associated with your account:

{% else %}

Warning: You currently do not have any email address set up. You should really add an email address so you can receive notifications, reset your password, etc.

{% endif %}

Add Email Address

{% csrf_token %} {{ form|crispy }}
{% endblock %} {% block extra_body %} {% endblock %}