mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-04 12:51:50 +02:00
17 lines
608 B
HTML
17 lines
608 B
HTML
{% extends 'base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
{% block title %}Mot de passe oublié ?{% endblock %}
|
|
{% block content %}
|
|
<p class="desktop-hidden mobile-content-title">
|
|
{% block content_title %}Mot de passe oublié ?{% endblock %}
|
|
</p>
|
|
<div class="box">
|
|
<form method="POST">
|
|
<p>Entrez votre mail pour recevoir les instructions pour le réinitialiser.</p>
|
|
{% crispy form %}
|
|
<div class="buttons">
|
|
<input class="button is-primary" type="submit" value="Envoyer">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|