it/itf/templates/registration/login.html
2011-08-10 17:07:23 +05:30

21 lines
402 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="/accounts/register" class="registerLink">New Here? Register Now!</a>
</form>
{% endblock %}