source: trunk/themes/default/template/identification.tpl @ 29195

Last change on this file since 29195 was 29195, checked in by flop25, 10 years ago

bug:3090
don't restrict the maxlength of the password

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