blob: 93e425a2828e3f6e694be7428a8d6fd031bf0bcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<!-- $Id$ -->
<div id="content">
<div class="titrePage">
<ul class="categoryActions">
<li><a href="{U_LOST_PASSWORD}" title="{lang:Forgot your password?}"><img src="template/yoga/theme/lost_password.png" class="button" alt="{lang:Forgot your password?}"></a></li>
<li><a href="{U_REGISTER}" title="{lang:Create a new account}"><img src="./template/yoga/theme/register.png" class="button" alt="{lang:register}"/></a></li>
<li><a href="{U_HOME}" title="{lang:Go through the gallery as a visitor}"><img src="./template/yoga/theme/home.png" class="button" alt="{lang:home}"/></a></li>
</ul>
<h2>{lang:Identification}</h2>
</div>
<!-- BEGIN errors -->
<div class="errors">
<ul>
<!-- BEGIN error -->
<li>{errors.error.ERROR}</li>
<!-- END error -->
</ul>
</div>
<!-- END errors -->
<form action="{F_LOGIN_ACTION}" method="post" class="properties">
<fieldset>
<legend>{lang:Connection settings}</legend>
<ul>
<li>
<label for="username">{L_USERNAME}</label>
<input class="login" type="text" name="username" id="username" size="25" maxlength="40" value="{USERNAME}">
</li>
<li>
<label for="password">{L_PASSWORD}</label>
<input class="login" type="password" name="password" id="password" size="25" maxlength="25">
</li>
<!-- BEGIN remember_me -->
<li>
<label>{L_REMEMBER_ME}</label>
<input type="checkbox" name="remember_me" value="1">
</li>
<!-- END remember_me -->
</ul>
</fieldset>
<p><input type="submit" name="login" value="{L_LOGIN}"></p>
</form>
<p>
<a href="{U_REGISTER}"><img src="template/yoga/theme/register.png" class="button" alt=""> {L_REGISTER}</a>
<a href="{U_LOST_PASSWORD}"><img src="template/yoga/theme/lost_password.png" class="button" alt=""> {lang:Forgot your password?}</a>
</p>
</div> <!-- content -->
|