it/itf/templates/registration/login.html

22 lines
493 B
HTML
Raw Normal View History

2011-10-25 10:31:59 +00:00
{% 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>
2011-10-26 09:14:19 +00:00
<p class="registerLink">New Here? <a href="/accounts/register" class="orangeForm">Click here!</a></p>
2011-10-25 10:31:59 +00:00
</form>
{% endblock %}