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.
portail-citoyen2/portail_citoyen/templates/profiles/email_change.html

18 lines
416 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Email change" %}{% endblock %}
{% block content %}
<div id="real-content">
<div class="block">
<p>{% blocktrans with email=user.email %}Your current email is {{ email }}{% endblocktrans %}</p>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="{% trans "Validate" %}"/>
</form>
</div>
</div>
{% endblock %}