【21 | スコアボードのデータ取得】 << 【ホーム】 >> 【23 | プレイヤー名登録】
↓↓クリックして頂けると励みになります。
Bootstrapを使用できるようにし、ユーザー情報を入力するフォームを作成します。
「frontend/index.html」ファイルを以下のように編集します。
記述編集 【Desktop/RailsGame/frontend/index.html】
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>お宝ゲットゲーム</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous" /> </head> <body> <div class="container"> <div class="d-flex justify-content-center"> <div class="mt-5"> <div> <h3 class="text-center mb-3">お宝ゲットゲーム</h3> <form id="login-form"> <div class="input-group mb-3"> <input type="text" id="username" class="form-control" placeholder="Username" required maxlength="10" /> <button class="btn btn-outline-secondary" type="submit"> スタート </button> </div> </form> </div> <canvas id="screen"></canvas> </div> </div> </div> <script src="https://unpkg.com/kaboom@2000.2.10/dist/kaboom.js"></script> <script type="module" src="game.js"></script> </body> </html>
ユーザ情報登録フォームができました。
ブラウザを確認します。
http://127.0.0.1:5500/
↓↓クリックして頂けると励みになります。
【21 | スコアボードのデータ取得】 << 【ホーム】 >> 【23 | プレイヤー名登録】