source: extensions/gally/gally-default/template/identification.tpl @ 22090

Last change on this file since 22090 was 16016, checked in by grum, 12 years ago

feature:2664- compatibility with Piwigo 2.4

  • Property svn:executable set to *
File size: 2.6 KB
Line 
1<!-- **GBL** >IDENTIFICATION> -->
2
3<div id="content" class="content">
4
5  <div class="titrePage" id='titrePageID'>
6
7    {if isset($MENUBAR)}
8      {if #menuAnimated# == "noswitch"}
9        {$MENUBAR}
10      {else}
11      <div id="menuswitcher">
12        <a id="icon_menu" class="button" onclick="gallyCP.switchmenu('', '{$ROOT_URL}{$themeconf.icon_dir}/');">&nbsp;
13        </a>
14      </div>
15      {/if}
16    {/if}
17
18    <ul class="categoryActions">
19      <li><a id="icon_lost_password" class="button" href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}"> </a></li>
20      {if isset($U_REGISTER) }
21      <li><a id="icon_register" class="button" href="{$U_REGISTER}" title="{'Create a new account'|@translate}"></a></li>
22      {/if}
23      <li><a id="icon_home" class="button" href="{$U_HOME}" title="{'Home'|@translate}"></a></li>
24    </ul>
25    <h2>{'Identification'|@translate}</h2>
26  </div>
27
28
29  {if #menuAnimated# != "noswitch" and isset($MENUBAR)}
30    {$MENUBAR}
31  {/if}
32
33{include file='infos_errors.tpl'}
34
35<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties" id="identification">
36  <fieldset>
37    <legend>{'Connection settings'|@translate}</legend>
38
39    <ul>
40      <li>
41        <div class="property">
42          <label for="username">{'Username'|@translate}</label>
43        </div>
44        <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40">
45      </li>
46
47      <li>
48        <div class="property">
49          <label for="password">{'Password'|@translate}</label>
50        </div>
51        <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25">
52      </li>
53
54      {if $authorize_remembering }
55      <li>
56        <div class="property">
57          <label for="remember_me">{'Auto login'|@translate}</label>
58        </div>
59        <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1">
60      </li>
61      {/if}
62    </ul>
63  </fieldset>
64
65  <p>
66    <input type="hidden" name="redirect" value="{$U_REDIRECT|@urlencode}">
67    <input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}">
68  </p>
69
70  <p>
71    {if isset($U_REGISTER) }
72    <a href="{$U_REGISTER}" title="{'Register'|@translate}" id="icon_register2" class="button"></a>
73    {/if}
74    {if isset($U_LOST_PASSWORD)}
75    <a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}" id="icon_lost_password2" class="button"></a>
76    {/if}
77  </p>
78
79</form>
80
81<script type="text/javascript"><!--
82document.login_form.username.focus();
83//--></script>
84
85</div> <!-- content -->
86<!-- **GBL** <IDENTIFICATION< -->
Note: See TracBrowser for help on using the repository browser.