changeset 6 | 94136f9a48bc |
5:aea7e764c033 | 6:94136f9a48bc |
---|---|
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 %} |