*** empty log message ***

svn path=/trunk/boinc/; revision=2597
This commit is contained in:
David Anderson 2003-10-28 18:33:13 +00:00
parent 4616204e7c
commit 0f883cadd6
2 changed files with 13 additions and 1 deletions

View File

@ -7171,3 +7171,8 @@ Karl 2003-10-17
clean install)
- BOINC 2.08 release
David 28 Oct 2003
- login form: keyboard focus is on auth input field
html_user/
util.inc

View File

@ -228,7 +228,8 @@ function print_country_select($selected_country="None") {
}
function print_login_form_aux($next_url, $user, $pathMod='') {
echo "<form method=post action=\"", $pathMod, "login_action.php\">
echo "
<form name=f method=post action=\"", $pathMod, "login_action.php\">
<input type=hidden name=next_url value='$next_url'>
";
start_table();
@ -250,6 +251,12 @@ function print_login_form_aux($next_url, $user, $pathMod='') {
);
}
end_table();
echo "
</form>
<script>
document.f.authenticator.focus();
</script>
";
}
function print_login_form($pathMod="") {