source: extensions/floOS/menubar_identification.tpl @ 4080

Last change on this file since 4080 was 3618, checked in by flop25, 15 years ago

update global with pwg 2.0.3

File size: 2.1 KB
Line 
1
2<dt class="titre_acordeon"><a href="#"><img src="{$ROOT_URL}{$themeconf.icon_dir}/menu/small_resizable.png" class="button_res" alt="[_]">{$block->get_title()|@translate}</a></dt>
3<dd>
4        {if isset($USERNAME)}
5        <p>{'hello'|@translate}&nbsp;{$USERNAME}&nbsp;!</p>
6        {/if}
7
8        <ul>
9        {if isset($U_REGISTER)}
10        <li><a href="{$U_REGISTER}" title="{'Create a new account'|@translate}" rel="nofollow">{'Register'|@translate}</a></li>
11        {/if}
12
13        {if isset($U_LOGIN)}
14        <li><a href="{$U_LOGIN}" rel="nofollow">{'Connection'|@translate}</a></li>
15        {/if}
16
17        {if isset($U_LOGOUT)}
18        <li><a href="{$U_LOGOUT}">{'logout'|@translate}</a></li>
19        {/if}
20
21        {if isset($U_PROFILE)}
22        <li><a href="{$U_PROFILE}" title="{'hint_customize'|@translate}">{'customize'|@translate}</a></li>
23        {/if}
24
25        {if isset($U_ADMIN)}
26        <li><a href="{$U_ADMIN}" title="{'hint_admin'|@translate}">{'admin'|@translate}</a></li>
27        {/if}
28        </ul>
29
30        {if isset($U_LOGIN)}
31        <form method="post" action="{$U_LOGIN}" id="quickconnect">
32        <fieldset>
33        <legend>{'Quick connect'|@translate}</legend>
34        <div>
35        <label for="username">{'Username'|@translate}</label><br/>
36        <input type="text" name="username" id="username" value="" style="width:99%">
37        </div>
38
39        <div><label for="password">{'Password'|@translate}</label>
40        <br/>
41        <input type="password" name="password" id="password" style="width:99%">
42        </div>
43
44{if $AUTHORIZE_REMEMBERING}
45        <div><label for="remember_me">
46        {'remember_me'|@translate}
47        <input type="checkbox" name="remember_me" id="remember_me" value="1">
48        </label></div>
49        {/if}
50
51        <div>
52        <input class="submit" type="submit" name="login" value="{'Submit'|@translate}">
53        <ul class="actions">
54                <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>
55                {if isset($U_REGISTER)}
56                <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>
57                {/if}
58        </ul>
59        </div>
60
61        </fieldset>
62        </form>
63        {/if}
64</dd>
Note: See TracBrowser for help on using the repository browser.