mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-04-28 18:02:43 +02:00
Fix the password reset form
Django crispy is bow using a filter rather than a tag. Using the `crispy` tag resulted in two imbricated forms being generated, and a broken "send" button.
This commit is contained in:
parent
44a2c20f95
commit
28290f20de
1 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,8 @@
|
|||
<div class="box">
|
||||
<form method="POST">
|
||||
<p>Entrez votre mail pour recevoir les instructions pour le réinitialiser.</p>
|
||||
{% crispy form %}
|
||||
{{ form | crispy }}
|
||||
{% csrf_token %}
|
||||
<div class="buttons">
|
||||
<input class="button is-primary" type="submit" value="Envoyer">
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue