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

Last change on this file since 12594 was 12592, checked in by grum, 12 years ago

feature:2499 - compatibility with Piwigo 2.3

  • Property svn:executable set to *
File size: 2.5 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='dialogs.tpl'}
34
35
36<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties" id="identification">
37  <fieldset>
38    <legend>{'Connection settings'|@translate}</legend>
39
40    <input type="hidden" name="redirect" value="{$U_REDIRECT}">
41
42    <ul>
43      <li>
44        <div class="property">
45          <label for="username">{'Username'|@translate}</label>
46        </div>
47        <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40" />
48      </li>
49
50      <li>
51        <div class="property">
52          <label for="password">{'Password'|@translate}</label>
53        </div>
54        <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25" />
55      </li>
56
57      {if $authorize_remembering }
58      <li>
59        <div class="property">
60          <label for="remember_me">{'Auto login'|@translate}</label>
61        </div>
62        <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1">
63      </li>
64      {/if}
65    </ul>
66  </fieldset>
67
68  <p><input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}"></p>
69
70  <p>
71    {if isset($U_REGISTER) }
72    <a id="icon_register2" class="button" href="{$U_REGISTER}" title="{'Register'|@translate}"></a>
73    {/if}
74    <a id="icon_lost_password2" class="button" href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}"></a>
75  </p>
76
77</form>
78
79
80
81
82
83<script type="text/javascript"><!--
84document.login_form.username.focus();
85//--></script>
86
87</div> <!-- content -->
88<!-- **GBL** <IDENTIFICATION< -->
Note: See TracBrowser for help on using the repository browser.