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.
montpellier-themes/templates/profiles/email_change.html

30 lines
795 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block extra-body-class %}narrow-page{% endblock %}
{% block content %}
<h2 class="single-title">Gestion du compte</h2>
<div id="welcome">
<h3>{% trans "Email change" %}</h3>
<div class="right">
<form method="post" action="." class="password_change_form">
<p>
Le changement de votre adresse de courriel nécessite une validation par
courriel. Un lien va vous être envoyé par courriel. Vous devez cliquer sur ce
lien pour valider le changement d'adresse de courriel.
</p>
{% csrf_token %}
{% include "authentic2/form_fields.html" with form=form %}
<input type="submit" value="{% trans 'Submit' %}" />
<button type="button" onclick="location.href = '/'">{% trans "Back" %}</button>
</form>
</div>
</div>
{% endblock %}