it/itf/templates/registration/login.html
2011-10-08 03:03:05 -04:00

21 lines
402 B
HTML
Executable File

{% 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 %}