it/itf/templates/registration/registration_form.html
2011-08-03 20:25:43 +05:30

16 lines
306 B
HTML

{% extends 'registration/register_base.html' %}
{% block reg_content %}
<form action="" method="POST">
<table>
{{ form.as_table }}
{% csrf_token %}
<tr>
<td colspan="2"><input type="submit" value="Submit" /></td>
</tr>
</table>
</form>
{% endblock %}