it/itf/templates/registration/login.html
2011-10-26 14:44:19 +05:30

22 lines
493 B
HTML
Executable File

{% extends 'registration/register_base.html' %}
{% block reg_content %}
<form action="" method="POST" id="formItf">
{% csrf_token %}
<p id="titleLogin">Login here</p>
<table>
{{ form.as_table }}
<tr>
<td><input type="submit" value="Login" /></td>
</tr>
</table>
<a href="" class="registerLink">Forgot your Password? </a>
<p class="registerLink">New Here? <a href="/accounts/register" class="orangeForm">Click here!</a></p>
</form>
{% endblock %}