aemo_fr/templates/registration/password_reset_form.html

15 lines
441 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'base.html' %}
{% block title %}Mot de passe oublié ?{% endblock %}
{% block content %}
<h1>Mot de passe oublié ?</h1>
<p>Saisissez votre adresse électronique ci-dessous et nous vous enverrons les instructions pour en créer un nouveau.</p>
<form method="POST">
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="btn btn-primary">Envoyez-moi les instructions</button>
</form>
{% endblock %}