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

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

import theme Simple version 2.5

  • use media queries to adapt layout for small screens
  • remove arbitrary limit on width: the picture will simply be partially hidden if too wide
  • update password.tpl
  • add MENUBAR on all pages
  • Spelling correction in README
  • update url
  • bugfix for the feature 'open external links in new window' for menubar links
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($MENUBAR)}{$MENUBAR}{/if}
9  {if isset($errors) }
10  <div class="errors">
11    <ul>
12      {foreach from=$errors item=error}
13      <li>{$error}</li>
14      {/foreach}
15    </ul>
16  </div>
17  {/if}
18  <form action="{$F_LOGIN_ACTION}" method="post" name="login_form">
19    <fieldset>
20      <legend>{'Connection settings'|@translate}</legend>
21      <ul>
22        <li>
23        <span class="property">
24            <label for="username">{'Username'|@translate}</label>
25        </span>
26        <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40">
27        </li>
28        <li>
29        <span class="property">
30            <label for="password">{'Password'|@translate}</label>
31        </span>
32        <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25">
33        </li>
34        {if $authorize_remembering }
35        <li>
36        <span class="property">
37          <label for="remember_me">{'Auto login'|@translate}</label>
38        </span>
39          <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1">
40        </li>
41        {/if}
42      </ul>
43    </fieldset>
44    <p>
45      <input type="hidden" name="redirect" value="{$U_REDIRECT|@urlencode}">
46      <input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}">
47    </p>
48    <p>
49      {if isset($U_REGISTER) }
50      <a href="{$U_REGISTER}" title="{'Register'|@translate}">{'Register'|@translate}</a>
51      {/if}
52      <a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}">{'Forgot your password?'|@translate}</a>
53    </p>
54  </form>
55<script type="text/javascript"><!--
56       document.login_form.username.focus();
57//--></script>
58</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.