euscanwww: fix captcha <table> must be inside <form>

Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
This commit is contained in:
Corentin Chary 2012-08-03 21:57:41 +02:00
parent 62b1fbba4e
commit d0aceaeec4

View File

@ -5,15 +5,15 @@
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<form method='post' action=''>{% csrf_token %}
<table> <table>
<form method='post' action=''>{% csrf_token %} {{ form }}
{{ form }} <tr>
<tr> <td></td>
<td></td> <td>
<td> <input class="btn pull-right" type="submit" value="Send activation email" />
<input class="btn pull-right" type="submit" value="Send activation email" /> </td>
</td> </tr>
</tr>
</form>
</table> </table>
</form>
{% endblock %} {% endblock %}