templates/registration/login.html
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 12:21:43 +0530
changeset 275 c701e68f8d35
parent 264 8c2376baee94
child 305 d18086013eac
permissions -rw-r--r--
fixed a typo and browse notifications works fine

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