diff options
author | kiko%async.com.br <> | 2004-07-24 11:18:45 +0200 |
---|---|---|
committer | kiko%async.com.br <> | 2004-07-24 11:18:45 +0200 |
commit | 4c5c5b73988273ff134a19d4f529019c36992a0f (patch) | |
tree | 874160fa34bd29da9624aceff0c2ca579211c39e | |
parent | 4816fb914b252205f43c3b1e7badb4c83413b720 (diff) | |
download | bugzilla-4c5c5b73988273ff134a19d4f529019c36992a0f.tar.gz bugzilla-4c5c5b73988273ff134a19d4f529019c36992a0f.tar.xz |
Fix for bug 252709: Focus Bugzilla_login field (in login page). r=jouni, a=myk.
-rw-r--r-- | template/en/default/account/auth/login.html.tmpl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/template/en/default/account/auth/login.html.tmpl b/template/en/default/account/auth/login.html.tmpl index f8e54f36f..0970cd9d0 100644 --- a/template/en/default/account/auth/login.html.tmpl +++ b/template/en/default/account/auth/login.html.tmpl @@ -31,14 +31,15 @@ [% PROCESS global/variables.none.tmpl %] [% PROCESS global/header.html.tmpl - title = "Login" + title = "Login", + onload = "document.forms['login'].Bugzilla_login.focus()" %] <p> I need a legitimate login and password to continue. </p> -<form action="[% target FILTER html %]" method="POST"> +<form name="login" action="[% target FILTER html %]" method="POST"> <table> <tr> <td align="right"> |