Skip to content

Commit

Permalink
Merge pull request #128 from dxw/add-landmark-regions
Browse files Browse the repository at this point in the history
Contain all visible content in landmark regions
  • Loading branch information
yndajas authored May 22, 2024
2 parents bceda34 + 3c24261 commit 3882547
Showing 1 changed file with 26 additions and 23 deletions.
49 changes: 26 additions & 23 deletions client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,30 +18,33 @@
<meta name="theme-color" content="#f9f8f5">
</head>
<body>
<div id="connection-status-icon">Not connected 🔴</div>
<div id="player-name"></div>
<header>
<div id="connection-status-icon">Not connected 🔴</div>
<div id="player-name"></div>
<h1>Colour Me Knowledgeable!</h1>
</header>

<h1>Colour Me Knowledgeable!</h1>

<form id="name-form">
<input id="name" type="text" />
<label for="name">Display name</label>

<button type="submit">Join game</button>
</form>

<h2>Players</h2>

<ul id="player-list"></ul>

<button id="start-button" style="display: none">Start game!</button>

<section>
<p id="question"></p>
<p id="number"></p>
</section>

<section id="colour-section"></section>
<main>
<form id="name-form">
<input id="name" type="text" />
<label for="name">Display name</label>

<button type="submit">Join game</button>
</form>

<h2>Players</h2>

<ul id="player-list"></ul>

<button id="start-button" style="display: none">Start game!</button>

<section>
<p id="question"></p>
<p id="number"></p>
</section>

<section id="colour-section"></section>
</main>

<template id="checkbox-template">
<form id="checkbox-form" class="answer-form">
Expand Down

0 comments on commit 3882547

Please sign in to comment.