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

Last change on this file since 9134 was 9134, checked in by Zaphod, 13 years ago

[extension] stripped - version 1.2.0

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