]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tpl/vintage/loginform.html
New basePath: fix officiel plugin paths and vintage template
[github/shaarli/Shaarli.git] / tpl / vintage / loginform.html
1 <!DOCTYPE html>
2 <html>
3 <head>{include="includes"}</head>
4 <body
5 {if="empty($username)"}
6 onload="document.loginform.login.focus();"
7 {else}
8 onload="document.loginform.password.focus();"
9 {/if}>
10 <div id="pageheader">
11 {include="page.header"}
12
13 <div id="headerform">
14 <form method="post" name="loginform" action="{$base_path}/login">
15 <label for="login">Login: <input type="text" id="login" name="login" tabindex="1"
16 {if="!empty($username)"}value="{$username}"{/if}>
17 </label>
18 <label for="password">Password: <input type="password" id="password" name="password" tabindex="2">
19 </label>
20 <input type="submit" value="Login" class="bigbutton" tabindex="4">
21 <label for="longlastingsession">
22 <input type="checkbox" name="longlastingsession"
23 id="longlastingsession" tabindex="3"
24 {if="$remember_user_default"}checked="checked"{/if}>
25 Stay signed in (Do not check on public computers)</label>
26 <input type="hidden" name="token" value="{$token}">
27 {if="$returnurl"}<input type="hidden" name="returnurl" value="{$returnurl}">{/if}
28 </form>
29 </div>
30 </div>
31
32 {include="page.footer"}
33 </body>
34 </html>