This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
cut-publik-theme/templates/authentic2/change_email.html

21 lines
654 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block breadcrumb %}
{{ block.super }}
<a href="..">{% trans "Your account" %}</a>
<a href="">{% trans "Change email" %}</a>
{% endblock %}
{% block content %}
<div class="a2-container">
<p>Votre adresse courriel actuelle est {{ user.email }}. La nouvelle adresse courriel souhaitée pour votre compte sera vérifiée par l'envoi d'un message.</p>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="{% trans "Validate" %}"/>
<input type="submit" name="cancel" formnovalidate value="{% trans "Cancel" %}"/>
</form>
</div>
{% endblock %}