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_done.html

25 lines
520 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block bodyargs %}class="narrow-page"{% endblock %}
{% block title %}Compte citoyen{% endblock %}
{% block content_header %}
<div id="single-title">Compte citoyen</div>
{% endblock %}
{% block menu %}
{% endblock %}
{% block content %}
<div>
<h2>{% trans "Resetting password" %}</h2>
<p>{% trans "Email with password reset instructions has been sent." %}</p>
<p><button type="button" onclick="location.href = '/'">{% trans "Back" %}</button></p>
</div>
{% endblock %}