euscan-ng/euscanwww/djeuscan/templates/registration/registration_form.html
Corentin Chary d0aceaeec4 euscanwww: fix captcha <table> must be inside <form>
Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
2012-08-03 21:57:41 +02:00

20 lines
383 B
HTML

{% extends "registration/_registration_base.html" %}
{% block title %}
Register for an account
{% endblock %}
{% block content %}
<form method='post' action=''>{% csrf_token %}
<table>
{{ form }}
<tr>
<td></td>
<td>
<input class="btn pull-right" type="submit" value="Send activation email" />
</td>
</tr>
</table>
</form>
{% endblock %}