it/itf/templates/registration/login.html

21 lines
402 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
<form action="" method="POST">
2011-08-03 14:55:43 +00:00
{% csrf_token %}
<table>
{{ form.as_table }}
<tr>
2011-08-03 17:04:42 +00:00
<td><input type="submit" value="Submit" /></td>
2011-08-03 14:55:43 +00:00
</tr>
</table>
2011-08-03 17:04:42 +00:00
<a href="" class="registerLink">Forgot your Password? </a>
2011-08-10 11:37:23 +00:00
<a href="/accounts/register" class="registerLink">New Here? Register Now!</a>
2011-08-03 17:04:42 +00:00
2011-08-03 11:16:12 +00:00
</form>
{% endblock %}