source: trunk/template/yoga/identification.tpl @ 2578

Last change on this file since 2578 was 2480, checked in by rvelices, 16 years ago
  • tried to reduce the number of css rules and selectors (most gains on menubar and usercomments) tested with IE6,IE7,FF,Opera9,Safari3
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
RevLine 
[2223]1{* $Id: identification.tpl 2480 2008-08-21 01:14:03Z rvelices $ *}
[2352]2<div id="content" class="content">
[859]3
4  <div class="titrePage">
5    <ul class="categoryActions">
[2288]6      <li><a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/lost_password.png" class="button" alt="{'Forgot your password?'|@translate}"></a></li>
[2223]7      {if isset($U_REGISTER) }
[2288]8      <li><a href="{$U_REGISTER}" title="{'Create a new account'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/register.png" class="button" alt="{'Register'|@translate}"/></a></li>
[2223]9      {/if}
[2288]10      <li><a href="{$U_HOME}" title="{'Go through the gallery as a visitor'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}"/></a></li>
[859]11    </ul>
[2223]12    <h2>{'Identification'|@translate}</h2>
[859]13  </div>
14
[2223]15  {if isset($errors) }
[859]16  <div class="errors">
17    <ul>
[2223]18      {foreach from=$errors item=error}
19      <li>{$error}</li>
20      {/foreach}
[859]21    </ul>
22  </div>
[2223]23  {/if}
[859]24
[2223]25<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties">
[859]26  <fieldset>
[2223]27    <legend>{'Connection settings'|@translate}</legend>
[1131]28
[2223]29    <input type="hidden" name="redirect" value="{$U_REDIRECT}">
[1131]30
[859]31    <ul>
[1131]32      <li>
[1129]33        <span class="property">
[2223]34          <label for="username">{'Username'|@translate}</label>
[1129]35        </span>
[2223]36        <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40" />
[859]37      </li>
[1131]38
[859]39      <li>
[1129]40        <span class="property">
[2223]41          <label for="password">{'Password'|@translate}</label>
[1129]42        </span>
[1491]43        <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25" />
[859]44      </li>
[1131]45
[2223]46      {if $authorize_remembering }
[859]47      <li>
[1129]48        <span class="property">
[2223]49          <label for="remember_me">{'remember_me'|@translate}</label>
[1129]50        </span>
51        <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1">
[859]52      </li>
[2223]53      {/if}
[859]54    </ul>
55  </fieldset>
56
[2288]57  <p><input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}"></p>
[1131]58
[859]59  <p>
[2223]60    {if isset($U_REGISTER) }
[2288]61    <a href="{$U_REGISTER}" title="{'Create a new account'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/register.png" class="button" alt="{'Register'|@translate}"> {'Register'|@translate}</a>
[2223]62    {/if}
[2288]63    <a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/lost_password.png" class="button" alt="{'Forgot your password?'|@translate}"> {'Forgot your password?'|@translate}</a>
[859]64  </p>
65
[2480]66</form>
67
68<script type="text/javascript"><!--
69document.login_form.username.focus();
70//--></script>
71
[859]72</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.