blob: de256f6e0567886d3df5dfccbef10014c6334344 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<h1>[% l('Login') %]</h1>
<div id="login_form">
<form method="post" action="/user">
<div id="login_form_inputs">
<label for="username_">[% l('Username : ') %]</label>
<input id="username_" type="text" name="username" value="[% c.user.username %]" />
<br />
<label for="password_">[% l('Password : ') %]</label>
<input id="password_" type="password" name="password" />
<br />
<button type="submit" value="[% l('Login') %]" >[% l('Login') %]</button>
</div>
<div id="login_form_line">
<span><a href="/register">[% l('Register') %]</a> |
<a href="/forgot_password">[% l('Forgotten password?') %]</a>
</span>
</div>
</form>
</div>
|