it/itf/templates/registration/registration_form.html

16 lines
306 B
HTML
Raw Normal View History

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