source: extensions/stripped/template/identification.tpl @ 32017

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

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

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