it/itf/templates/registration/login.html

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