source: extensions/floPure/Pure_default/template/identification.tpl @ 5904

Last change on this file since 5904 was 5904, checked in by flop25, 14 years ago

Pure_defaut created

File size: 2.3 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}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/home.png" class="button" alt="{'Home'|@translate}"></a></li>
6    </ul>
7    <h2>{'Identification'|@translate}</h2>
8  </div>
9
10  {if isset($errors) }
11  <div class="errors">
12    <ul>
13      {foreach from=$errors item=error}
14      <li>{$error}</li>
15      {/foreach}
16    </ul>
17  </div>
18  {/if}
19
20<div id="autre_content">
21<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties">
22  <fieldset>
23    <legend>{'Connection settings'|@translate}</legend>
24
25    <input type="hidden" name="redirect" value="{$U_REDIRECT}">
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="Auto login">{'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><input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}"></p>
54
55  <p>
56    {if isset($U_REGISTER) }
57    <a href="{$U_REGISTER}" title="{'Register'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/register.png" class="button" alt="{'Register'|@translate}"> {'Register'|@translate}</a>
58    {/if}
59    <a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/lost_password.png" class="button" alt="{'Forgot your password?'|@translate}"> {'Forgot your password?'|@translate}</a>
60  </p>
61
62</form>
63
64<script type="text/javascript"><!--
65document.login_form.username.focus();
66//--></script>
67
68</div>
69</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.