You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
1.0 KiB

<h1>Login</h1>
{if $error != ''}
<div class="error">{$error}</div>
{/if}
<form action="login" method="post">
<input type="hidden" name="redirect" value="{$redirect|escape:"htmlall"}" />
<table class="data">
<tr><th><label for="username">Username<br/> or Email:</label></th>
<td>
<input style="width:150px;" id="username" value="{$username|escape:"htmlall"}" name="username" type="text"/>
</td></tr>
<tr><th><label for="password">Password:</label></th>
<td>
<input style="width:150px;" id="password" name="password" type="password"/>
</td></tr>
<tr><th><label for="rememberme">Remember Me:</label></th><td><input id="rememberme" {if $rememberme == 1}checked="checked"{/if} name="rememberme" type="checkbox"/></td></tr>
<tr><th></th><td>{$page->smarty->fetch('captcha.tpl')}<input class="rndbtn" type="submit" value="Login"/></td></tr>
</table>
</form>
<br/>
<a href="{$smarty.const.WWW_TOP}/forgottenpassword">Forgotten your password?</a>