blob: ab06b26556452fd26dd0ac17f31f9d39c00ece2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% extends index.html as contents %}
<h2>User Login for the {{ project }} Project</h2>
<form style="text-align:center;" id='login' action='{{ base_url }}/login.html' method='post' accept-charset='UTF-8' >
<fieldset >
<legend>Existing Users</legend>
<p><label for='username' >User Name:</label>
<input type='text' name='username' id='username' maxlength="128"/>
</p>
<p><label for='password' >Password:</label>
<input type='password' name='password' id='password' maxlength="72"/>
</p>
<input type='submit' value="Login" />
</fieldset>
</form>
<p style="color: #f00; text-weight: 700;">{{ login_message }}</p>
<p style="font-size: small;"><em><a href="{{ base_url }}/forgot.html">Forgot Password?</a></em></p>
|