mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
382 B
HTML
15 lines
382 B
HTML
<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>
|