2013-02-26 10:09:41 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>{include="includes"}</head>
|
|
|
|
<body{if="ban_canLogin()"} onload="document.loginform.login.focus();"{/if}>
|
|
|
|
<div id="pageheader">
|
|
|
|
{include="page.header"}
|
|
|
|
|
|
|
|
<div id="headerform">
|
|
|
|
{if="!ban_canLogin()"}
|
|
|
|
You have been banned from login after too many failed attempts. Try later.
|
|
|
|
{else}
|
|
|
|
<form method="post" name="loginform">
|
2015-06-19 22:37:38 +02:00
|
|
|
<label for="login">Login: <input type="text" id="login" name="login" tabindex="1"></label>
|
|
|
|
<label for="password">Password: <input type="password" id="password" name="password" tabindex="2"></label>
|
|
|
|
<input type="submit" value="Login" class="bigbutton" tabindex="4">
|
|
|
|
<label for="longlastingsession">
|
|
|
|
<input type="checkbox" name="longlastingsession" id="longlastingsession" tabindex="3">
|
|
|
|
Stay signed in (Do not check on public computers)</label>
|
2013-02-26 10:09:41 +01:00
|
|
|
<input type="hidden" name="token" value="{$token}">
|
2015-06-11 13:53:27 +02:00
|
|
|
{if="$returnurl"}<input type="hidden" name="returnurl" value="{$returnurl}">{/if}
|
2013-02-26 10:09:41 +01:00
|
|
|
</form>
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{include="page.footer"}
|
|
|
|
</body>
|
2014-12-02 21:00:52 +01:00
|
|
|
</html>
|