it/itf/templates/registration/login.html

18 lines
301 B
HTML
Raw Normal View History

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