it/itf/templates/registration/registration_form.html

16 lines
306 B
HTML
Raw Normal View History

2011-08-03 11:16:12 +00:00
{% extends 'registration/register_base.html' %}
2011-08-03 14:37:26 +00:00
2011-08-03 11:16:12 +00:00
{% block reg_content %}
<form action="" method="POST">
2011-08-03 14:55:43 +00:00
<table>
{{ form.as_table }}
2011-08-03 14:41:11 +00:00
{% csrf_token %}
2011-08-03 14:55:43 +00:00
<tr>
<td colspan="2"><input type="submit" value="Submit" /></td>
</tr>
</table>
2011-08-03 11:16:12 +00:00
</form>
{% endblock %}