]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/vintage/loginform.html
New basePath: fix officiel plugin paths and vintage template
[github/shaarli/Shaarli.git] / tpl / vintage / loginform.html
CommitLineData
45034273
SS
1<!DOCTYPE html>
2<html>
3<head>{include="includes"}</head>
dbcd06e9 4<body
6c50a6cc
A
5{if="empty($username)"}
6 onload="document.loginform.login.focus();"
7{else}
8 onload="document.loginform.password.focus();"
85c4bdc2 9{/if}>
45034273 10<div id="pageheader">
dbcd06e9 11 {include="page.header"}
45034273 12
dbcd06e9 13 <div id="headerform">
9fbc4229 14 <form method="post" name="loginform" action="{$base_path}/login">
6c50a6cc
A
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>
dbcd06e9 29 </div>
45034273
SS
30</div>
31
32{include="page.footer"}
33</body>
c133612f 34</html>