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

26 lines
382 B
HTML

{% extends "registration/base.html" %}
{% load i18n %}
{% block title %}
{% trans "Resetting password" %}
{% endblock %}
{% block content %}
{% if validlink %}
<form method="post" action=".">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="{% trans 'Submit' %}" />
</form>
{% else %}
<p>{% trans "Password reset failed" %}</p>
{% endif %}
{% endblock %}