Spaces:
Running
Running
File size: 904 Bytes
b34f536 4ad30b2 b34f536 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>ηͺε·ε
₯ε</title>
<style>
body {
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
input, button {
font-size: 1.2em;
margin-top: 10px;
}
</style>
</head>
<body>
<label for="numberInput">ζγγγγηͺε·γε
₯εγγ¦γγ γγγ<br>η΅Άε―Ύγ«θͺεγ§ε
₯εγγͺγγ§γγ γγγ</label>
<input type="text" id="numberInput" />
<button id="continueBtn">ηΆθ‘</button>
<script>
document.getElementById("continueBtn").addEventListener("click", function() {
const number = document.getElementById("numberInput").value;
localStorage.setItem("no", number);
window.location.href = "2.html";
});
</script>
</body>
</html>
|