source: trunk/themes/default/template/identification.tpl @ 10812

Last change on this file since 10812 was 10812, checked in by mistic100, 13 years ago

merge spread_menus to the core

  • Property svn:eol-style set to LF
File size: 2.0 KB
Line 
1{if isset($MENUBAR)}{$MENUBAR}{/if}
2<div id="content" class="content">
3
4<div class="titrePage">
5        <ul class="categoryActions"></ul>
6        <h2>{'Identification'|@translate}</h2>
7</div>
8
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
19<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties">
20  <fieldset>
21    <legend>{'Connection settings'|@translate}</legend>
22
23    <ul>
24      <li>
25        <span class="property">
26          <label for="username">{'Username'|@translate}</label>
27        </span>
28        <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40">
29      </li>
30
31      <li>
32        <span class="property">
33          <label for="password">{'Password'|@translate}</label>
34        </span>
35        <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25">
36      </li>
37
38      {if $authorize_remembering }
39      <li>
40        <span class="property">
41          <label for="remember_me">{'Auto login'|@translate}</label>
42        </span>
43        <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1">
44      </li>
45      {/if}
46    </ul>
47  </fieldset>
48
49  <p>
50    <input type="hidden" name="redirect" value="{$U_REDIRECT|@urlencode}">
51    <input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}">
52  </p>
53
54  <p>
55{if isset($U_REGISTER)}
56                <a href="{$U_REGISTER}" title="{'Register'|@translate}" class="pwg-state-default pwg-button">
57                        <span class="pwg-icon pwg-icon-register">&nbsp;</span><span>{'Register'|@translate}</span>
58                </a>
59{/if}
60                <a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}" class="pwg-state-default pwg-button">
61                        <span class="pwg-icon pwg-icon-lost-password">&nbsp;</span><span>{'Forgot your password?'|@translate}</span>
62                </a>
63  </p>
64
65</form>
66
67<script type="text/javascript"><!--
68document.login_form.username.focus();
69//--></script>
70
71</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.