]> git.0d.be Git - chloro.git/blob - chloro/phyll/templates/registration/login.html
add note title in page <title>
[chloro.git] / chloro / phyll / templates / registration / login.html
1 {% extends "phyll/base.html" %}
2 {% load i18n %}
3
4 {% block body %}
5 <form method="post" action="{% url 'login' %}">
6 {% csrf_token %}
7 {{ form.as_p }}
8 <button name="login">{% trans "Login" %}</button>
9 <input type="hidden" name="next" value="{{ next }}" />
10 </form>
11 {% endblock %}