blob: 3fcc24b502a6060a448b36b6e6307178e06df7fb (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<div id="content" class="content">
<div class="titrePage">
<ul class="categoryActions">
<li><a href="{$U_HOME}" title="{'Home'|@translate}" class="pwg-state-default pwg-button">
<span class="pwg-icon pwg-icon-home"> </span><span class="pwg-button-text">{'Home'|@translate}</span>
</a></li>
</ul>
<h2>{'Identification'|@translate}</h2>
</div>
{if isset($errors) }
<div class="errors">
<ul>
{foreach from=$errors item=error}
<li>{$error}</li>
{/foreach}
</ul>
</div>
{/if}
<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties">
<fieldset>
<legend>{'Connection settings'|@translate}</legend>
<ul>
<li>
<span class="property">
<label for="username">{'Username'|@translate}</label>
</span>
<input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40">
</li>
<li>
<span class="property">
<label for="password">{'Password'|@translate}</label>
</span>
<input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25">
</li>
{if $authorize_remembering }
<li>
<span class="property">
<label for="remember_me">{'Auto login'|@translate}</label>
</span>
<input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1">
</li>
{/if}
</ul>
</fieldset>
<p>
<input type="hidden" name="redirect" value="{$U_REDIRECT|@urlencode}">
<input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}">
</p>
<p>
{if isset($U_REGISTER)}
<a href="{$U_REGISTER}" title="{'Register'|@translate}" class="pwg-state-default pwg-button">
<span class="pwg-icon pwg-icon-register"> </span><span>{'Register'|@translate}</span>
</a>
{/if}
<a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}" class="pwg-state-default pwg-button">
<span class="pwg-icon pwg-icon-lost-password"> </span><span>{'Forgot your password?'|@translate}</span>
</a>
</p>
</form>
<script type="text/javascript"><!--
document.login_form.username.focus();
//--></script>
</div> <!-- content -->
|