source: extensions/luciano/template/menubar_identification.tpl @ 27593

Last change on this file since 27593 was 5940, checked in by patdenice, 14 years ago

Fix display for IE7 and IE6

File size: 1.8 KB
Line 
1<dt>
2  {if isset($U_LOGIN)}
3    <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>
4        {/if}
5        {'Identification'|@translate}</dt>
6<dd>
7        {if isset($USERNAME)}
8        <p>{'Hello'|@translate}&nbsp;{$USERNAME}&nbsp;!</p>
9        {/if}
10
11        <ul>
12        {if isset($U_REGISTER)}
13        <li><a href="{$U_REGISTER}" title="{'Create a new account'|@translate}" rel="nofollow">{'Register'|@translate}</a></li>
14        {/if}
15
16        {if isset($U_LOGIN)}
17        <li><a href="{$U_LOGIN}" rel="nofollow">{'Login'|@translate}</a></li>
18        {/if}
19
20        {if isset($U_LOGOUT)}
21        <li><a href="{$U_LOGOUT}">{'Logout'|@translate}</a></li>
22        {/if}
23
24        {if isset($U_PROFILE)}
25        <li><a href="{$U_PROFILE}" title="{'customize the appareance of the gallery'|@translate}">{'Customize'|@translate}</a></li>
26        {/if}
27
28        {if isset($U_ADMIN)}
29        <li><a href="{$U_ADMIN}" title="{'available for administrators only'|@translate}">{'Administration'|@translate}</a></li>
30        {/if}
31        </ul>
32
33        {if isset($U_LOGIN)}
34        <form method="post" action="{$U_LOGIN}" id="quickconnect">
35        <fieldset>
36        <legend>{'Quick connect'|@translate}</legend>
37        <div>
38        <label for="username">{'Username'|@translate}</label><br>
39        <input type="text" name="username" id="username" value="" style="width:99%">
40        </div>
41
42        <div><label for="password">{'Password'|@translate}</label>
43        <br>
44        <input type="password" name="password" id="password" style="width:99%">
45        </div>
46
47        {if $AUTHORIZE_REMEMBERING}
48        <div><label for="remember_me">
49        {'Auto login'|@translate}
50        <input type="checkbox" name="remember_me" id="remember_me" value="1">
51        </label></div>
52        {/if}
53
54        <div>
55        <input class="submit" type="submit" name="login" value="{'Submit'|@translate}">
56        </div>
57
58        </fieldset>
59        </form>
60        {/if}
61</dd>
62
Note: See TracBrowser for help on using the repository browser.