blob: f9bfe0275a22388f8d6eb53b91b147da400a3c35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<body>
<form name="frmlogin">
<input type="text" name="username"
onfocus="frmlogin.username.select();"
onblur="frmlogin.password.focus();">
<input type="password" name="password"
onfocus="frmlogin.password.select();">
</form>
<script language="JavaScript">
document.frmlogin.username.focus();
</script>
</body>
</html>
|