source: extensions/stripped/template/menubar_identification.tpl @ 26899

Last change on this file since 26899 was 24444, checked in by flop25, 11 years ago

register link added in menubar quickconnect
script js hardly corrected to works with latest version of jQuery

File size: 1.3 KB
Line 
1{if isset($U_LOGIN)}
2  <dt>{'Quick connect'|@translate}</dt>
3  <dd>
4    <form method="post" action="{$U_LOGIN}" id="quickconnect">
5      <div>
6        <label for="username">{'Username'|@translate}</label>
7        <input type="text" name="username" id="username" value="">
8      </div>
9      <div>
10        <label for="password">{'Password'|@translate}</label>
11        <input type="password" name="password" id="password" value="">
12      </div>
13      {if $AUTHORIZE_REMEMBERING}
14        <div>
15          <label for="remember_me">{'Auto login'|@translate}
16          <input type="checkbox" name="remember_me" id="remember_me" value="1">
17          </label>
18        </div>
19      {/if}
20      <div class="submit_block">
21        <input type="hidden" name="redirect" value="{$smarty.server.REQUEST_URI|@urlencode}">
22        <input class="submit" type="submit" name="login" value="{'Submit'|@translate}">
23        <ul class="actions">
24          <li>{if isset($U_LOST_PASSWORD)}<a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}" rel="nofollow">{'Forgot your password?'|@translate}</a>{/if}</li>
25          <li>{if isset($U_REGISTER)}<a href="{$U_REGISTER}" title="{'Create a new account'|@translate}" rel="nofollow">{'Register'|@translate}</a>{/if}</li>
26        </ul>
27      </div>
28    </form>
29   
30  </dd>
31{/if}
Note: See TracBrowser for help on using the repository browser.