{% extends "base.html" %} {% load hc_extras %} {% block content %}

Change Account's Email Address

Your account's email address is used for sending the sign-in links and monthly reports. Make sure you can receive emails at the new address. Otherwise, you may get locked out of your {{ site_name }} account.

{% if request.user.has_usable_password %}

Your password will be reset. For security purposes, after updating your email address, {% site_name %} will also reset your current password and log you out.

{% endif %} {% if request.user.credentials.exists %}

Two-factor authentication is active. If you are handing this account over to somebody else, consider disabling two-factor authentication first.

{% endif %}
{% csrf_token %}
{% if form.email.errors %}
{{ form.email.errors|join:"" }}
{% endif %}
{% endblock %}