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

Last change on this file since 8076 was 8076, checked in by rvelices, 13 years ago

css sprites (still ongoing)

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