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