author | anoop |
Thu, 04 Feb 2010 22:14:34 +0530 | |
changeset 13 | 0fb64b24a1c9 |
permissions | -rw-r--r-- |
13 | 1 |
{% extends 'base.html' %} |
2 |
{% block content %} |
|
3 |
<form action="/accounts/register/" method="post"> |
|
4 |
{{ form.as_p }} |
|
5 |
||
6 |
{% if errors %} |
|
7 |
<p style="color: red;"> |
|
8 |
Please correct the error{{ errors|pluralize }} below. |
|
9 |
{% for i in errors %} |
|
10 |
<br>{{ i }} |
|
11 |
{% endfor %} |
|
12 |
</p> |
|
13 |
{% endif %} |
|
14 |
||
15 |
<input type="submit" value="Submit" /> |
|
16 |
</form> |
|
17 |
{% endblock %} |