templates/login.html
author Anoop Jacob Thomas<anoop@fossee.in>
Tue, 09 Nov 2010 13:40:41 +0530
branchanoop
changeset 248 73ad1c61bb74
parent 69 5ae81766e3e5
permissions -rw-r--r--
Fixed a bug.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
69
5ae81766e3e5 added templates for login and logout
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
5ae81766e3e5 added templates for login and logout
nishanth
parents:
diff changeset
     2
{% block title %}
5ae81766e3e5 added templates for login and logout
nishanth
parents:
diff changeset
     3
Sage Days 25 - Login
5ae81766e3e5 added templates for login and logout
nishanth
parents:
diff changeset
     4
{% endblock %}
5ae81766e3e5 added templates for login and logout
nishanth
parents:
diff changeset
     5
{% block content %}
5ae81766e3e5 added templates for login and logout
nishanth
parents:
diff changeset
     6
<form action="" method="post">
5ae81766e3e5 added templates for login and logout
nishanth
parents:
diff changeset
     7
{{ form.as_p }}
5ae81766e3e5 added templates for login and logout
nishanth
parents:
diff changeset
     8
<input value="Login" type="submit">
5ae81766e3e5 added templates for login and logout
nishanth
parents:
diff changeset
     9
</form>
5ae81766e3e5 added templates for login and logout
nishanth
parents:
diff changeset
    10
{% endblock %}