aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/loginform.html
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/loginform.html')
-rw-r--r--tpl/loginform.html15
1 files changed, 12 insertions, 3 deletions
diff --git a/tpl/loginform.html b/tpl/loginform.html
index f0b45df2..a49b42d3 100644
--- a/tpl/loginform.html
+++ b/tpl/loginform.html
@@ -2,7 +2,13 @@
2<html> 2<html>
3<head>{include="includes"}</head> 3<head>{include="includes"}</head>
4<body 4<body
5{if="ban_canLogin()"} onload="document.loginform.login.focus();"{/if}> 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}>
6<div id="pageheader"> 12<div id="pageheader">
7 {include="page.header"} 13 {include="page.header"}
8 14
@@ -11,8 +17,11 @@
11 You have been banned from login after too many failed attempts. Try later. 17 You have been banned from login after too many failed attempts. Try later.
12 {else} 18 {else}
13 <form method="post" name="loginform"> 19 <form method="post" name="loginform">
14 <label for="login">Login: <input type="text" id="login" name="login" tabindex="1"></label> 20 <label for="login">Login: <input type="text" id="login" name="login" tabindex="1"
15 <label for="password">Password: <input type="password" id="password" name="password" tabindex="2"></label> 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>
16 <input type="submit" value="Login" class="bigbutton" tabindex="4"> 25 <input type="submit" value="Login" class="bigbutton" tabindex="4">
17 <label for="longlastingsession"> 26 <label for="longlastingsession">
18 <input type="checkbox" name="longlastingsession" id="longlastingsession" tabindex="3"> 27 <input type="checkbox" name="longlastingsession" id="longlastingsession" tabindex="3">