{% extends "authentic2/base-page.html" %} {% load i18n %} {% block breadcrumb %} {{ block.super }} {% trans "Your account" %} {% trans "Change email" %} {% endblock %} {% block content %}

{% blocktrans with email=user.email %}Your current email is {{ email }}. An email will be sent to validate the new one.{% endblocktrans %}

{% csrf_token %} {{ form.as_p }}
{% endblock %}