source: extensions/floOs/identification.tpl @ 3618

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

update global with pwg 2.0.3

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<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties">
26  <fieldset>
27    <legend>{'Connection settings'|@translate}</legend>
28
29    <input type="hidden" name="redirect" value="{$U_REDIRECT}">
30
31    <ul>
32      <li>
33        <span class="property">
34          <label for="username">{'Username'|@translate}</label>
35        </span>
36        <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40" />
37      </li>
38
39      <li>
40        <span class="property">
41          <label for="password">{'Password'|@translate}</label>
42        </span>
43        <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25" />
44      </li>
45
46      {if $authorize_remembering }
47      <li>
48        <span class="property">
49          <label for="remember_me">{'remember_me'|@translate}</label>
50        </span>
51        <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1">
52      </li>
53      {/if}
54    </ul>
55  </fieldset>
56
57  <p><input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}"></p>
58
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> <!-- content -->
Note: See TracBrowser for help on using the repository browser.