source: extensions/floOs/menubar_identification.tpl @ 3608

Last change on this file since 3608 was 3334, checked in by flop25, 15 years ago

first commit

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