changeset 41 | b742f22b62d1 |
parent 40 | 43853e376bb8 |
child 42 | 9b5b8c997598 |
40:43853e376bb8 | 41:b742f22b62d1 |
---|---|
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 %} |