it/itf/templates/registration/login.html

18 lines
301 B
HTML
Raw Normal View History

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