1 | {if ($Slim.style_slim)!=1} |
---|
2 | {$MENUBAR} |
---|
3 | {/if} |
---|
4 | <div id="content" class="content{if isset($MENUBAR)} contentWithMenu{/if}"> |
---|
5 | {if ($Slim.style_slim)==1} |
---|
6 | <a href="{$U_HOME}"><img src="themes/Slim/images/home.png" height="32px" width="32px"></a> |
---|
7 | {/if} |
---|
8 | |
---|
9 | <div id="infoBlock"> |
---|
10 | <div class="titrePage"> |
---|
11 | <ul class="categoryActions"> |
---|
12 | </ul> |
---|
13 | {if ($Slim.style_slim)==1} |
---|
14 | <h2>Administration</h2> |
---|
15 | {else} |
---|
16 | <h2><a href="{$U_HOME}">{'Home'|@translate}</a>{$LEVEL_SEPARATOR}{'Identification'|@translate}</h2> |
---|
17 | {/if} |
---|
18 | </div> |
---|
19 | </div> |
---|
20 | {include file='infos_errors.tpl'} |
---|
21 | |
---|
22 | <form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties"> |
---|
23 | <fieldset> |
---|
24 | <div class="fielTit"><h2>{'Connection settings'|@translate}</h2></div> |
---|
25 | |
---|
26 | <ul> |
---|
27 | <li> |
---|
28 | <span class="property"> |
---|
29 | <label for="username">{'Username'|@translate}</label> |
---|
30 | </span> |
---|
31 | <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40"> |
---|
32 | </li> |
---|
33 | |
---|
34 | <li> |
---|
35 | <span class="property"> |
---|
36 | <label for="password">{'Password'|@translate}</label> |
---|
37 | </span> |
---|
38 | <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25"> |
---|
39 | </li> |
---|
40 | |
---|
41 | |
---|
42 | |
---|
43 | {if ($Slim.style_slim)!=1} |
---|
44 | {if $authorize_remembering } |
---|
45 | <li> |
---|
46 | <span class="property"> |
---|
47 | <label for="remember_me">{'Auto login'|@translate}</label> |
---|
48 | </span> |
---|
49 | <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1"> |
---|
50 | </li> |
---|
51 | {/if} |
---|
52 | </ul> |
---|
53 | <p> |
---|
54 | {if isset($U_REGISTER)} |
---|
55 | <a href="{$U_REGISTER}" title="{'Register'|@translate}" class="pwg-state-default pwg-button"> |
---|
56 | <span class="pwg-icon pwg-icon-register"> </span><span>{'Register'|@translate}</span> |
---|
57 | </a> |
---|
58 | {/if} |
---|
59 | </p> |
---|
60 | <p> |
---|
61 | {if isset($U_LOST_PASSWORD)} |
---|
62 | <a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}" class="pwg-state-default pwg-button"> |
---|
63 | <span class="pwg-icon pwg-icon-lost-password"> </span><span>{'Forgot your password?'|@translate}</span> |
---|
64 | </a> |
---|
65 | {/if} |
---|
66 | </p> |
---|
67 | |
---|
68 | {/if} |
---|
69 | </fieldset> |
---|
70 | |
---|
71 | |
---|
72 | |
---|
73 | <p> |
---|
74 | <input type="hidden" name="redirect" value="{$U_REDIRECT|@urlencode}"> |
---|
75 | <input tabindex="4" type="submit" name="login" value="{'Submit'|@translate}"> |
---|
76 | </p> |
---|
77 | |
---|
78 | |
---|
79 | |
---|
80 | |
---|
81 | </form> |
---|
82 | |
---|
83 | <script type="text/javascript"><!-- |
---|
84 | document.login_form.username.focus(); |
---|
85 | //--></script> |
---|
86 | |
---|
87 | </div> <!-- content --> |
---|
88 | |
---|