gestiojeux/gestiojeux_auth/templates/registration/login.html
2020-12-18 21:20:59 +01:00

13 lines
352 B
HTML

{% extends "small_page.html" %}
{% block "content" %}
<h1>Connexion par mot de passe</h1>
<form method="post" action="{% url "gestiojeux_auth:password_login" %}?next={{ next|urlencode }}">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Connexion</button>
<input type="hidden" name="next" value="{{ next }}" />
</form>
{% endblock %}