refine re dss script correction
[django_unres.git] / django_simple / authentication / templates / registration / login.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block content %}
5 <form method="post" action=".">
6   {% csrf_token %} 
7   {{ form.as_p }}
8
9   <input type="submit" value="{% trans 'Log in' %}" />
10   <input type="hidden" name="next" value="{{ next }}" />
11 </form>
12
13 <p>{% trans "Forgot password" %}? <a href="{% url 'auth_password_reset' %}">{% trans "Reset it" %}</a>!</p>
14 <p>{% trans "Not member" %}? <a href="{% url 'registration_register' %}">{% trans "Register" %}</a>!</p>
15 {% endblock %}