source: extensions/floPure/identification.tpl @ 3474

Last change on this file since 3474 was 3474, checked in by flop25, 15 years ago

refresh all the tpl with current yoga tpl.

maj avec le yoga de pwg 2.0.2

File size: 2.8 KB
Line 
1{* $Id: identification.tpl 2352 2008-05-20 00:27:26Z patdenice $ *}
2<div id="content" class="content">
3
4  <div class="titrePage">
5    <ul class="categoryActions">
6      <li><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}"></a></li>
7      {if isset($U_REGISTER) }
8      <li><a href="{$U_REGISTER}" title="{'Create a new account'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/register.png" class="button" alt="{'Register'|@translate}"/></a></li>
9      {/if}
10      <li><a href="{$U_HOME}" title="{'Go through the gallery as a visitor'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}"/></a></li>
11    </ul>
12    <h2>{'Identification'|@translate}</h2>
13  </div>
14
15  {if isset($errors) }
16  <div class="errors">
17    <ul>
18      {foreach from=$errors item=error}
19      <li>{$error}</li>
20      {/foreach}
21    </ul>
22  </div>
23  {/if}
24
25<div id="autre_content">
26<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties">
27  <fieldset>
28    <legend>{'Connection settings'|@translate}</legend>
29
30    <input type="hidden" name="redirect" value="{$U_REDIRECT}">
31
32    <ul>
33      <li>
34        <span class="property">
35          <label for="username">{'Username'|@translate}</label>
36        </span>
37        <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40" />
38      </li>
39
40      <li>
41        <span class="property">
42          <label for="password">{'Password'|@translate}</label>
43        </span>
44        <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25" />
45      </li>
46
47      {if $authorize_remembering }
48      <li>
49        <span class="property">
50          <label for="remember_me">{'remember_me'|@translate}</label>
51        </span>
52        <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1">
53      </li>
54      {/if}
55    </ul>
56  </fieldset>
57
58  <p><input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}"></p>
59  <p>
60    {if isset($U_REGISTER) }
61    <a href="{$U_REGISTER}" title="{'Create a new account'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/register.png" class="button" alt="{'Register'|@translate}"> {'Register'|@translate}</a>
62    {/if}
63    <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>
64  </p>
65</form>
66
67<script type="text/javascript"><!--
68document.login_form.username.focus();
69//--></script>
70
71</div>
72</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.