37 lines
No EOL
1.3 KiB
HTML
37 lines
No EOL
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{include="includes"}
|
|
</head>
|
|
<body>
|
|
<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" id="configform" class="configform">
|
|
<p>
|
|
<label for="login">Login :</label>
|
|
<input type="text" name="login" id="login" tabindex="1" autofocus />
|
|
<label for="password">Password :</label>
|
|
<input type="password" name="password" id="password" tabindex="2">
|
|
</p>
|
|
<p>
|
|
<input type="checkbox" name="longlastingsession" id="longlastingsession" tabindex="3">
|
|
<label for="longlastingsession"> Stay signed in (Do not check on public computers)</label>
|
|
</p>
|
|
<p>
|
|
{if="$returnurl"}
|
|
<input type="hidden" name="returnurl" value="{$returnurl|htmlspecialchars}">
|
|
{/if}
|
|
<input type="hidden" name="token" value="{$token}">
|
|
<input type="submit" value="Login" class="bigbutton" tabindex="4" />
|
|
</p>
|
|
</form>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
{include="page.footer"}
|
|
</body>
|
|
</html> |