source: extensions/Versa/template/identification.tpl @ 31833

Last change on this file since 31833 was 31833, checked in by lexming, 7 years ago

Initial commit

  • Property svn:executable set to *
File size: 2.0 KB
Line 
1<div id="mainBox">
2{if isset($MENUBAR)}{$MENUBAR}{/if}
3{combine_script id='menu.switch' load='footer' require='jquery' path='themes/versa/js/menuswitch.js'}
4
5<div id="contentBox">
6
7<div id="content" class="content">
8
9<div class="titrePage">
10        <ul class="categoryActions">
11        </ul>
12        <h2><a href="{$U_HOME}">{'Home'|@translate}</a>{$LEVEL_SEPARATOR}{'Identification'|@translate}</h2>
13</div>
14
15{include file='infos_errors.tpl'}
16
17<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties">
18  <fieldset>
19    <legend>{'Connection settings'|@translate}</legend>
20
21    <label for="username">{'Username'|@translate}</label>
22    <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40">
23    <br>
24    <label for="password">{'Password'|@translate}</label>
25    <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25">
26    <br>
27    {if $authorize_remembering }
28      <input tabindex="3" type="checkbox" name="remember_me_full" id="remember_me_full" value="1">
29      <label for="remember_me_full" class="checkLab">{'Auto login'|@translate}</label>
30    {/if}
31  </fieldset>
32
33  <p>
34    <input type="hidden" name="redirect" value="{$U_REDIRECT|@urlencode}">
35    <input tabindex="4" type="submit" name="login" value="{'Submit'|@translate}">
36  </p>
37
38        <p>
39{if isset($U_REGISTER)}
40                <a href="{$U_REGISTER}" title="{'Register'|@translate}" class="pwg-state-default pwg-button">
41                        <span class="pwg-icon pwg-icon-register">&nbsp;</span><span>{'Register'|@translate}</span>
42                </a>
43{/if}
44{if isset($U_LOST_PASSWORD)}
45                <a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}" class="pwg-state-default pwg-button">
46                        <span class="pwg-icon pwg-icon-lost-password">&nbsp;</span><span>{'Forgot your password?'|@translate}</span>
47                </a>
48{/if}
49        </p>
50
51</form>
52
53<script type="text/javascript"><!--
54document.login_form.username.focus();
55//--></script>
56
57</div> <!-- content -->
58</div> <!-- contentBox -->
59</div> <!-- mainBox -->
Note: See TracBrowser for help on using the repository browser.