]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/loginform.html
Reindent the login template
[github/shaarli/Shaarli.git] / tpl / loginform.html
CommitLineData
45034273
SS
1<!DOCTYPE html>
2<html>
3<head>{include="includes"}</head>
dbcd06e9
A
4<body
5{if="ban_canLogin()"} onload="document.loginform.login.focus();"{/if}>
45034273 6<div id="pageheader">
dbcd06e9 7 {include="page.header"}
45034273 8
dbcd06e9
A
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>
45034273
SS
25</div>
26
27{include="page.footer"}
28</body>
c133612f 29</html>