mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 11:53:07 +09:00
19 lines
371 B
HTML
19 lines
371 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
input {
|
|
-moz-appearance: none;
|
|
margin: 0;
|
|
padding: 10px;
|
|
font-size: 40px;
|
|
height: 100px;
|
|
width: 100px;
|
|
border: 1px solid red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body onload="document.getElementById('i').focus()">
|
|
<input type="password" id="i">
|
|
</body>
|
|
</html>
|