source: branches/branch-1_6/template/yoga/identification.tpl @ 1492

Last change on this file since 1492 was 1492, checked in by chrisaga, 18 years ago

merge from trunk r1490:1491 into branch 1.6 (fix bugs 484 and 244 display issues with IE : focus, checkboxe radio)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1<!-- $Id: identification.tpl 1492 2006-07-22 09:31:30Z chrisaga $ -->
2<div id="content">
3
4  <div class="titrePage">
5    <ul class="categoryActions">
6      <li><a href="{U_LOST_PASSWORD}" title="{lang:Forgot your password?}"><img src="{themeconf:icon_dir}/lost_password.png" class="button" alt="{lang:Forgot your password?}"></a></li>
7      <li><a href="{U_REGISTER}" title="{lang:Create a new account}"><img src="{themeconf:icon_dir}/register.png" class="button" alt="{lang:register}"/></a></li>
8      <li><a href="{U_HOME}" title="{lang:Go through the gallery as a visitor}"><img src="{themeconf:icon_dir}/home.png" class="button" alt="{lang:home}"/></a></li>
9    </ul>
10    <h2>{lang:Identification}</h2>
11  </div>
12
13  <!-- BEGIN errors -->
14  <div class="errors">
15    <ul>
16      <!-- BEGIN error -->
17      <li>{errors.error.ERROR}</li>
18      <!-- END error -->
19    </ul>
20  </div>
21  <!-- END errors -->
22
23<form action="{F_LOGIN_ACTION}" method="post" name="login_form" class="properties">
24  <fieldset>
25    <legend>{lang:Connection settings}</legend>
26
27    <input type="hidden" name="redirect" value="{U_REDIRECT}">
28
29    <ul>
30      <li>
31        <span class="property">
32          <label for="username">{L_USERNAME}</label>
33        </span>
34        <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40" value="{USERNAME}" />
35      </li>
36
37      <li>
38        <span class="property">
39          <label for="password">{L_PASSWORD}</label>
40        </span>
41        <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25" />
42      </li>
43
44      <!-- BEGIN remember_me -->
45      <li>
46        <span class="property">
47          <label for="remember_me">{L_REMEMBER_ME}</label>
48        </span>
49        <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1">
50      </li>
51      <!-- END remember_me -->
52    </ul>
53  </fieldset>
54
55  <p><input tabindex="4" type="submit" name="login" value="{L_LOGIN}"></p>
56</form>
57
58<script type="text/javascript"><!--
59document.login_form.username.focus();
60//--></script>
61
62  <p>
63    <a href="{U_REGISTER}"><img src="{themeconf:icon_dir}/register.png" class="button" alt=""> {L_REGISTER}</a>
64    <a href="{U_LOST_PASSWORD}"><img src="{themeconf:icon_dir}/lost_password.png" class="button" alt=""> {lang:Forgot your password?}</a>
65  </p>
66
67</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.