mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 16:37:31 +09:00
14 lines
382 B
HTML
14 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>
|