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

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

restore HOME links, change parameter name for remove menu on certain page

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