it/itf/templates/registration/login.html
2011-08-03 22:34:42 +05:30

21 lines
384 B
HTML

{% extends 'registration/register_base.html' %}
{% block reg_content %}
<form action="" method="POST">
{% csrf_token %}
<table>
{{ form.as_table }}
<tr>
<td><input type="submit" value="Submit" /></td>
</tr>
</table>
<a href="" class="registerLink">Forgot your Password? </a>
<a href="" class="registerLink">New Here? Register Now!</a>
</form>
{% endblock %}