source: extensions/simple_themes/simple/template/identification.tpl @ 13549

Last change on this file since 13549 was 13549, checked in by plg, 12 years ago

import theme Simple version 2.3

  • if cl_conflit is used, don't add jQuery.noConflict
  • fix the possibility to toggle visibility of image informations
  • show logout link when connected - thanks to gbo
  • update jquery to 1.4.4
  • backport commit from piwigo: r6244, r6430 & r6438
  • add gitignore
  • update javascripts + add script to combine/minify
  • apply r6594 from piwigo's trunk
  • move jquery in the header, using known_script
  • translation for the menu title
  • add 1px icon start_filter.png to avoid loading error with rvtree plugin
  • margin for error & info divs
File size: 1.9 KB
Line 
1<div class="titrePage">
2  <ul class="categoryActions">
3    <li><a href="{$U_HOME}" title="{'Go through the gallery as a visitor'|@translate}">{'Home'|@translate}</a></li>
4  </ul>
5  <h2>{'Identification'|@translate}</h2>
6</div>
7<div id="content">
8  {if isset($errors) }
9  <div class="errors">
10    <ul>
11      {foreach from=$errors item=error}
12      <li>{$error}</li>
13      {/foreach}
14    </ul>
15  </div>
16  {/if}
17  <form action="{$F_LOGIN_ACTION}" method="post" name="login_form">
18    <fieldset>
19      <legend>{'Connection settings'|@translate}</legend>
20      <ul>
21        <li>
22        <span class="property">
23            <label for="username">{'Username'|@translate}</label>
24        </span>
25        <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40">
26        </li>
27        <li>
28        <span class="property">
29            <label for="password">{'Password'|@translate}</label>
30        </span>
31        <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25">
32        </li>
33        {if $authorize_remembering }
34        <li>
35        <span class="property">
36          <label for="remember_me">{'Auto login'|@translate}</label>
37        </span>
38          <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1">
39        </li>
40        {/if}
41      </ul>
42    </fieldset>
43    <p>
44      <input type="hidden" name="redirect" value="{$U_REDIRECT|@urlencode}">
45      <input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}">
46    </p>
47    <p>
48      {if isset($U_REGISTER) }
49      <a href="{$U_REGISTER}" title="{'Register'|@translate}">{'Register'|@translate}</a>
50      {/if}
51      <a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}">{'Forgot your password?'|@translate}</a>
52    </p>
53  </form>
54<script type="text/javascript"><!--
55       document.login_form.username.focus();
56//--></script>
57</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.