]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tpl/loginform.html
Initial commit (version 0.0.40 beta)
[github/shaarli/Shaarli.git] / tpl / loginform.html
1 <!DOCTYPE html>
2 <html>
3 <head>{include="includes"}</head>
4 <body{if="ban_canLogin()"} onload="document.loginform.login.focus();"{/if}>
5 <div id="pageheader">
6 {include="page.header"}
7
8 <div id="headerform">
9 {if="!ban_canLogin()"}
10 You have been banned from login after too many failed attempts. Try later.
11 {else}
12 <form method="post" name="loginform">
13 Login: <input type="text" name="login" tabindex="1">&nbsp;&nbsp;&nbsp;
14 Password : <input type="password" name="password" tabindex="2">
15 <input type="submit" value="Login" class="bigbutton" tabindex="4"><br>
16 <input style="margin:10 0 0 40;" type="checkbox" name="longlastingsession" id="longlastingsession" tabindex="3"><label for="longlastingsession">&nbsp;Stay signed in (Do not check on public computers)</label>
17 <input type="hidden" name="token" value="{$token}">
18 {if="$returnurl"}<input type="hidden" name="returnurl" value="{$returnurl|htmlspecialchars}">{/if}
19 </form>
20 {/if}
21 </div>
22 </div>
23
24 {include="page.footer"}
25 </body>
26 </html>