author | Nishanth Amuluru <nishanth@fossee.in> |
Sat, 08 Jan 2011 22:57:30 +0530 | |
changeset 102 | 0f9d485609ac |
parent 81 | 70726699ca80 |
permissions | -rw-r--r-- |
20
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"> |
22
8b891483e052
fixed a typo and set the settings required for django registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
20
diff
changeset
|
4 |
{% csrf_token %} |
81
70726699ca80
now the text area is displayed in a more elegant way
Nishanth Amuluru <nishanth@fossee.in>
parents:
80
diff
changeset
|
5 |
{{ form.as_p }} |
20
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 %} |