blob: 4028479542970f18d0f07d2978bfd9ad74b78d76 (
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
|
<dt>{'identification'|@translate}</dt>
<dd>
{if isset($USERNAME)}
<p>{'hello'|@translate} {$USERNAME} !</p>
{/if}
<ul>
{if isset($U_REGISTER)}
<li><a href="{$U_REGISTER}" title="{'Create a new account'|@translate}" rel="nofollow">{'Register'|@translate}</a></li>
{/if}
{if isset($U_LOGIN)}
<li><a href="{$U_LOGIN}" rel="nofollow">{'Connection'|@translate}</a></li>
{/if}
{if isset($U_LOGOUT)}
<li><a href="{$U_LOGOUT}">{'logout'|@translate}</a></li>
{/if}
{if isset($U_PROFILE)}
<li><a href="{$U_PROFILE}" title="{'hint_customize'|@translate}">{'customize'|@translate}</a></li>
{/if}
{if isset($U_ADMIN)}
<li><a href="{$U_ADMIN}" title="{'hint_admin'|@translate}">{'admin'|@translate}</a></li>
{/if}
</ul>
{if isset($U_LOGIN)}
<form method="post" action="{$U_LOGIN}" id="quickconnect">
<fieldset>
<legend>{'Quick connect'|@translate}</legend>
<div>
<label for="username">{'Username'|@translate}</label><br>
<input type="text" name="username" id="username" value="" style="width:99%">
</div>
<div><label for="password">{'Password'|@translate}</label>
<br>
<input type="password" name="password" id="password" style="width:99%">
</div>
{if $AUTHORIZE_REMEMBERING}
<div><label for="remember_me">
{'remember_me'|@translate}
<input type="checkbox" name="remember_me" id="remember_me" value="1">
</label></div>
{/if}
<div>
<input class="submit" type="submit" name="login" value="{'Submit'|@translate}">
<ul class="actions">
<li><a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}" rel="nofollow"><img src="{$ROOT_URL}{$themeconf.icon_dir}/lost_password.png" class="button" alt="{'Forgot your password?'|@translate}"></a></li>
{if isset($U_REGISTER)}
<li><a href="{$U_REGISTER}" title="{'Create a new account'|@translate}" rel="nofollow"><img src="{$ROOT_URL}{$themeconf.icon_dir}/register.png" class="button" alt="{'Register'|@translate}"></a></li>
{/if}
</ul>
</div>
</fieldset>
</form>
{/if}
</dd>
|