c133612f32
Fixes shaarli/Shaarli#29 Style elements refactored as follows: - use existing ids and classes if possible, - else, define new ones and stick with the existing naming convention, - remove hardcoded style attributes from RainTPL templates. Exception: In tpl/tagcloud.html, the display size of each tag is computed at page generation. Signed-off-by: VirtualTam <virtualtam@flibidi.org>
26 lines
995 B
HTML
26 lines
995 B
HTML
<!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">
|
|
Login: <input type="text" name="login" tabindex="1">
|
|
Password : <input type="password" name="password" tabindex="2">
|
|
<input type="submit" value="Login" class="bigbutton" tabindex="4"><br>
|
|
<input type="checkbox" name="longlastingsession" id="longlastingsession" tabindex="3"><label for="longlastingsession"> Stay signed in (Do not check on public computers)</label>
|
|
<input type="hidden" name="token" value="{$token}">
|
|
{if="$returnurl"}<input type="hidden" name="returnurl" value="{$returnurl|htmlspecialchars}">{/if}
|
|
</form>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
|
|
{include="page.footer"}
|
|
</body>
|
|
</html>
|