Newer
Older
2025-shino / index.html
<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <title>グループ選択</title>
  <link rel="stylesheet" href="style.css">
</head>

<body>
  <div class="container">
    <h1>グループ & ユーザー名</h1>

    <p class="desc">地図で共有するグループ名とユーザー名を入力してください。</p>

    <div class="group-input">
      <input type="text" id="groupName" placeholder="グループ名(例:A組)"><br><br>
      <input type="text" id="userName" placeholder="あなたの名前(例:さとう)">
      <br><br>
      <button id="goMap">地図へ</button>
    </div>
  </div>

  <script>
    document.getElementById("goMap").addEventListener("click", () => {
      const grp = document.getElementById("groupName").value.trim();
      const usr = document.getElementById("userName").value.trim();

      if (!grp || !usr) {
        alert("グループ名とユーザー名を入力してください");
        return;
      }

      location.href = `map4.html?group=${encodeURIComponent(grp)}&user=${encodeURIComponent(usr)}`;
    });
  </script>
</body>
</html>