9
|
1 |
{% extends "projrev/base.html" %}
|
|
2 |
{% block stylesheets %}
|
|
3 |
<link rel="stylesheet" href="/site-content/css/login.css" type="text/css"/>
|
|
4 |
{% endblock stylesheets %}
|
|
5 |
{% block body %}
|
|
6 |
<form id="login-form" action="#" method="POST">
|
|
7 |
<fieldset>
|
|
8 |
|
|
9 |
<legend>Log in</legend>
|
|
10 |
{% if password_sent %}
|
|
11 |
The password has been mailed to your Email ID.<br/>
|
|
12 |
{% else %}
|
|
13 |
<label for="login">Email</label>
|
|
14 |
<input type="text" id="login" name="username"/>
|
|
15 |
<div class="clear"></div>
|
|
16 |
<br />
|
|
17 |
<input type="submit" style="margin: -20px 0 0 287px;" class="button" name="commit" value="Submit"/>
|
|
18 |
{% endif %}
|
|
19 |
</fieldset>
|
|
20 |
</form>
|
|
21 |
{% endblock body %} |