templates/registration/login.html
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 10:49:48 +0530
changeset 24 d152c2211a3a
child 26 8c2376baee94
permissions -rw-r--r--
Added templates for login and logout

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