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

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

import theme Simple version 2.4

compatibility with piwigo 2.2:

  • update template, language strings + misc things
  • use rating and core.scripts from default theme
  • cleanup useless javascript stuff
  • use new combined_css feature - thanks to P@t
  • replace known_script with combine_script
File size: 1.9 KB
Line 
1<div class="titrePage">
2  <ul class="categoryActions">
3    <li><a href="{$U_HOME}" title="{'Home'|@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.