diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-01-14 15:51:30 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-02-27 20:01:54 +0100 |
commit | 009ce9358168cc06c76fc2f4162829e552e633a3 (patch) | |
tree | 43b251326a24c6600acead1c406f7c18f291be8e /tpl/default/loginform.html | |
parent | 9e5a37cc7f4eb1c83222a94eb83d4e99ce4460a4 (diff) | |
download | Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.tar.gz Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.tar.zst Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.zip |
Move default template to vintage folder
Diffstat (limited to 'tpl/default/loginform.html')
-rw-r--r-- | tpl/default/loginform.html | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/tpl/default/loginform.html b/tpl/default/loginform.html deleted file mode 100644 index 84176385..00000000 --- a/tpl/default/loginform.html +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head>{include="includes"}</head> | ||
4 | <body | ||
5 | {if="ban_canLogin($conf)"} | ||
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($conf)"} | ||
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> | ||