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

35 lines
914 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block bodyargs %}
class="narrow-page"
{% endblock %}
{% block title %}{% trans "Email change" %}{% endblock %}
{% block content_header %}<div id="single-title">{% trans "Account Management" %}</div>{% endblock %}
{% block content %}
<div id="welcome">
<h2>{% trans "Email change" %}</h2>
<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>
</div>
<div class="right">
<form method="post" action="." class="password_change_form">
{% 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>
<br class="clear"/>
{% endblock %}