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>