equal
deleted
inserted
replaced
1 {% extends 'base.html' %} |
1 {% extends 'base.html' %} |
2 {% block content %} |
2 {% block content %} |
3 <form action="/accounts/login/" method="post"> |
3 <form action="{% url auth_login %}" method="post"> |
4 {% csrf_token %} |
4 {% csrf_token %} |
5 {{ form.as_p }} |
5 {{ form.as_p }} |
6 <input type="submit" value="Login" /> |
6 <input type="submit" value="Login" /> |
7 </form> |
7 </form> |
8 <a href="/accounts/password/reset">Forgot password?</a> |
8 <a href="{% url auth_password_reset %}">Forgot password?</a> |
9 {% endblock %} |
9 {% endblock %} |