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/registration/password_reset_confirm.html

41 lines
776 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block extra-body-class %}narrow-page{% endblock %}
{% block content %}
<h2 class="single-title">Compte citoyen</h2>
<div id="welcome">
{% if validlink %}
<h3>{% trans "Resetting password" %}</h3>
<div class="right">
<form method="post" action=".">
<p>
Veuillez saisir votre nouveau mot de passe et le confirmer en le saisissant une
nouvelle fois à l'identique.
</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>
{% else %}
<p>{% trans "Password reset failed" %}</p>
{% endif %}
</div>
<br class="clear"/>
{% endblock %}