author | Nishanth Amuluru <nishanth@fossee.in> |
Fri, 07 Jan 2011 12:21:43 +0530 | |
changeset 275 | c701e68f8d35 |
parent 260 | 8b891483e052 |
permissions | -rw-r--r-- |
258
0e8d0f5474f2
Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
0e8d0f5474f2
Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
2 |
{% block content %} |
0e8d0f5474f2
Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
3 |
<form action="/accounts/register/" method="post"> |
260
8b891483e052
fixed a typo and set the settings required for django registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
258
diff
changeset
|
4 |
{% csrf_token %} |
258
0e8d0f5474f2
Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
5 |
{{ form.as_p }} |
0e8d0f5474f2
Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
6 |
<input type="submit" value="Submit" /> |
0e8d0f5474f2
Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
7 |
</form> |
0e8d0f5474f2
Added template for creating a login
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
8 |
{% endblock %} |