42 lines
992 B
Smarty
42 lines
992 B
Smarty
|
|
{*
|
||
|
|
Output of login page
|
||
|
|
*}
|
||
|
|
|
||
|
|
<div id="topspacer"></div>
|
||
|
|
|
||
|
|
<table class="tableborder" style="background-color:#eeeeee;">
|
||
|
|
<tr><td class="center">
|
||
|
|
<br/>
|
||
|
|
<p>{$lang.enterusername}</p>
|
||
|
|
|
||
|
|
<form action="login.php" id="login" method="post">
|
||
|
|
<input type="hidden" value="{$refer}" name="refer"/>
|
||
|
|
<table class="tableedit" align="center">
|
||
|
|
<tr>
|
||
|
|
<td>{$lang.username}:</td>
|
||
|
|
<td><input type="textbox" id="username" name="username"/></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td>{$lang.password}:</td>
|
||
|
|
<td><input type="password" name="password"/></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td colspan="2"><input type="checkbox" name="permanent" id="permanent" value="1" /><label for="permanent">{$lang.stayloggedin}</label></td>
|
||
|
|
</tr>
|
||
|
|
|
||
|
|
<tr>
|
||
|
|
<td colspan="2" class="center">
|
||
|
|
<input type="submit" value="{$lang.login}" class="button"/>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</form>
|
||
|
|
|
||
|
|
<p>{$error}</p>
|
||
|
|
</td></tr>
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<script language="JavaScript" type="text/javascript">
|
||
|
|
document.forms['login'].username.focus();
|
||
|
|
</script>
|