]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/loginform.html
Fixes can login function call in loginform.html
[github/shaarli/Shaarli.git] / tpl / loginform.html
CommitLineData
45034273
SS
1<!DOCTYPE html>
2<html>
3<head>{include="includes"}</head>
dbcd06e9 4<body
4cfe8d33 5{if="ban_canLogin($conf)"}
85c4bdc2
A
6 {if="empty($username)"}
7 onload="document.loginform.login.focus();"
8 {else}
9 onload="document.loginform.password.focus();"
10 {/if}
11{/if}>
45034273 12<div id="pageheader">
dbcd06e9 13 {include="page.header"}
45034273 14
dbcd06e9 15 <div id="headerform">
4cfe8d33 16 {if="!ban_canLogin($conf)"}
dbcd06e9
A
17 You have been banned from login after too many failed attempts. Try later.
18 {else}
19 <form method="post" name="loginform">
85c4bdc2
A
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>
dbcd06e9
A
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>
45034273
SS
34</div>
35
36{include="page.footer"}
37</body>
c133612f 38</html>