Fix pour la détection du champ username par Firefox
Étrangement, sur firefox, le mot de passe s'enregistre mais pas le nom d'utilisateur, c'est peu pratique. Avec ces changement, c'est réparé.
This commit is contained in:
parent
574b5186de
commit
d50dff0c28
1 changed files with 1 additions and 8 deletions
|
@ -11,14 +11,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<form method="post" action="{% url 'login' %}">
|
<form method="post" action="{% url 'login' %}">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<table>
|
{{ form.as_p }}
|
||||||
<tr>
|
|
||||||
<td><input type="{{ form.username.type }}" name="{{ form.username.name }}" placeholder="Login"/></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><input type="password" name="{{ form.password.name }}" placeholder="Password"/></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<input type="submit" value="Connexion" />
|
<input type="submit" value="Connexion" />
|
||||||
{% if next %}
|
{% if next %}
|
||||||
<input type="hidden" name="next" value={{ next }} />
|
<input type="hidden" name="next" value={{ next }} />
|
||||||
|
|
Loading…
Reference in a new issue