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
1 changed files with 9 additions and 9 deletions

View File

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