|
Revision 12960, 2.3 KB
(checked in by Zaphod, 16 months ago)
|
|
version 2.1.0
|
| Line | |
|---|
| 1 | {php} |
|---|
| 2 | global $conf; |
|---|
| 3 | $this->assign('LEVEL_SEPARATOR', $conf[ 'level_separator' ]); |
|---|
| 4 | {/php} |
|---|
| 5 | |
|---|
| 6 | <div class="titrePage"> |
|---|
| 7 | <div class="browsePath"> |
|---|
| 8 | <h2> |
|---|
| 9 | {if isset($MENUBAR)} |
|---|
| 10 | <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span> |
|---|
| 11 | {/if} |
|---|
| 12 | <a href="{$U_HOME}">{'Home'|@translate}</a> |
|---|
| 13 | {$LEVEL_SEPARATOR}{'Identification'|@translate} |
|---|
| 14 | </h2> |
|---|
| 15 | </div> |
|---|
| 16 | </div> |
|---|
| 17 | <div id="content"> |
|---|
| 18 | {if isset($MENUBAR)}{$MENUBAR}{/if} |
|---|
| 19 | <div id="content_cell"> |
|---|
| 20 | <div class="content_block"> |
|---|
| 21 | {if isset($errors) } |
|---|
| 22 | <div class="errors"> |
|---|
| 23 | <ul> |
|---|
| 24 | {foreach from=$errors item=error} |
|---|
| 25 | <li>{$error}</li> |
|---|
| 26 | {/foreach} |
|---|
| 27 | </ul> |
|---|
| 28 | </div> |
|---|
| 29 | {/if} |
|---|
| 30 | <form action="{$F_LOGIN_ACTION}" method="post" name="login_form"> |
|---|
| 31 | <fieldset> |
|---|
| 32 | <legend>{'Connection settings'|@translate}</legend> |
|---|
| 33 | <input type="hidden" name="redirect" value="{$U_REDIRECT|urlencode}"> |
|---|
| 34 | <ul> |
|---|
| 35 | <li> |
|---|
| 36 | <span class="property"> |
|---|
| 37 | <label for="username">{'Username'|@translate}</label> |
|---|
| 38 | </span> |
|---|
| 39 | <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40"> |
|---|
| 40 | </li> |
|---|
| 41 | <li> |
|---|
| 42 | <span class="property"> |
|---|
| 43 | <label for="password">{'Password'|@translate}</label> |
|---|
| 44 | </span> |
|---|
| 45 | <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25"> |
|---|
| 46 | </li> |
|---|
| 47 | {if $authorize_remembering } |
|---|
| 48 | <li> |
|---|
| 49 | <span class="property"> |
|---|
| 50 | <label for="Auto login">{'Auto login'|@translate}</label> |
|---|
| 51 | </span> |
|---|
| 52 | <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1"> |
|---|
| 53 | </li> |
|---|
| 54 | {/if} |
|---|
| 55 | </ul> |
|---|
| 56 | </fieldset> |
|---|
| 57 | <p><input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}"></p> |
|---|
| 58 | <p> |
|---|
| 59 | {if isset($U_REGISTER) } |
|---|
| 60 | <a href="{$U_REGISTER}" title="{'Register'|@translate}">{'Register'|@translate}</a> - |
|---|
| 61 | {/if} |
|---|
| 62 | <a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}">{'Forgot your password?'|@translate}</a> |
|---|
| 63 | </p> |
|---|
| 64 | </form> |
|---|
| 65 | <script type="text/javascript"> |
|---|
| 66 | <!-- |
|---|
| 67 | document.login_form.username.focus(); |
|---|
| 68 | //--> |
|---|
| 69 | </script> |
|---|
| 70 | </div> |
|---|
| 71 | </div> |
|---|
| 72 | </div> <!-- content --> |
|---|