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