| 1 | <div id="content" class="content"> |
|---|
| 2 | |
|---|
| 3 | <div class="titrePage"> |
|---|
| 4 | <ul class="categoryActions"> |
|---|
| 5 | <li><a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/lost_password.png" class="button" alt="{'Forgot your password?'|@translate}"></a></li> |
|---|
| 6 | {if isset($U_REGISTER) } |
|---|
| 7 | <li><a href="{$U_REGISTER}" title="{'Register'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/register.png" class="button" alt="{'Register'|@translate}"></a></li> |
|---|
| 8 | {/if} |
|---|
| 9 | <li><a href="{$U_HOME}" title="{'Home'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/home.png" class="button" alt="{'Home'|@translate}"></a></li> |
|---|
| 10 | </ul> |
|---|
| 11 | <h2>{'Identification'|@translate}</h2> |
|---|
| 12 | </div> |
|---|
| 13 | |
|---|
| 14 | {if isset($errors) } |
|---|
| 15 | <div class="errors"> |
|---|
| 16 | <ul> |
|---|
| 17 | {foreach from=$errors item=error} |
|---|
| 18 | <li>{$error}</li> |
|---|
| 19 | {/foreach} |
|---|
| 20 | </ul> |
|---|
| 21 | </div> |
|---|
| 22 | {/if} |
|---|
| 23 | |
|---|
| 24 | <form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties"> |
|---|
| 25 | <fieldset> |
|---|
| 26 | <legend>{'Connection settings'|@translate}</legend> |
|---|
| 27 | |
|---|
| 28 | <input type="hidden" name="redirect" value="{$U_REDIRECT}"> |
|---|
| 29 | |
|---|
| 30 | <ul> |
|---|
| 31 | <li> |
|---|
| 32 | <span class="property"> |
|---|
| 33 | <label for="username">{'Username'|@translate}</label> |
|---|
| 34 | </span> |
|---|
| 35 | <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40"> |
|---|
| 36 | </li> |
|---|
| 37 | |
|---|
| 38 | <li> |
|---|
| 39 | <span class="property"> |
|---|
| 40 | <label for="password">{'Password'|@translate}</label> |
|---|
| 41 | </span> |
|---|
| 42 | <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25"> |
|---|
| 43 | </li> |
|---|
| 44 | |
|---|
| 45 | {if $authorize_remembering } |
|---|
| 46 | <li> |
|---|
| 47 | <span class="property"> |
|---|
| 48 | <label for="Auto login">{'Auto login'|@translate}</label> |
|---|
| 49 | </span> |
|---|
| 50 | <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1"> |
|---|
| 51 | </li> |
|---|
| 52 | {/if} |
|---|
| 53 | </ul> |
|---|
| 54 | </fieldset> |
|---|
| 55 | |
|---|
| 56 | <p><input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}"></p> |
|---|
| 57 | |
|---|
| 58 | <p> |
|---|
| 59 | {if isset($U_REGISTER) } |
|---|
| 60 | <a href="{$U_REGISTER}" title="{'Register'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/register.png" class="button" alt="{'Register'|@translate}"> {'Register'|@translate}</a> |
|---|
| 61 | {/if} |
|---|
| 62 | <a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/lost_password.png" class="button" alt="{'Forgot your password?'|@translate}"> {'Forgot your password?'|@translate}</a> |
|---|
| 63 | </p> |
|---|
| 64 | |
|---|
| 65 | </form> |
|---|
| 66 | |
|---|
| 67 | <script type="text/javascript"><!-- |
|---|
| 68 | document.login_form.username.focus(); |
|---|
| 69 | //--></script> |
|---|
| 70 | |
|---|
| 71 | </div> <!-- content --> |
|---|