pytask/templates/registration/login.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sat, 15 Jan 2011 21:21:49 +0530
changeset 417 b37e541bf950
parent 364 2763afa1c2a2
child 435 1217d808d70f
permissions -rw-r--r--
Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.

{% extends 'base.html' %}
{% block content %}
<form action="{% url auth_login %}" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Login" />
</form>
<a href="{% url auth_password_reset %}">Forgot password?</a>
{% endblock %}