it/itf/templates/registration/registration_form.html

12 lines
221 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">
{{ form.as_p }}
2011-08-03 20:11:11 +05:30
{% csrf_token %}
2011-08-03 16:46:12 +05:30
<input type="submit" value="Submit" />
</form>
{% endblock %}