You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
984 B
46 lines
984 B
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Room - HyperSet</title>
|
|
<link rel='stylesheet' type='text/css' href='/styles/style.css' />
|
|
<link rel='stylesheet' type='text/css' href='/styles/room.css' />
|
|
</head>
|
|
|
|
<body>
|
|
<section id="left-section">
|
|
<button>Orignal Set Game</button>
|
|
|
|
<div>
|
|
<label>Private</label>
|
|
<input type='checkbox' />
|
|
</div>
|
|
|
|
<span id="or">OR</span>
|
|
|
|
<div class="group">
|
|
|
|
|
|
<section id="right-section">
|
|
<div>
|
|
<span class="subtitle">List of players waiting in the room:</span>
|
|
<div id="players">
|
|
<span>Aurianus</span>
|
|
<span>Basuw</span>
|
|
<span>Raph</span>
|
|
<span>Remrem</span>
|
|
</div>
|
|
</div>
|
|
|
|
<button id="start" class="action-button">Start</button>
|
|
<script>
|
|
let button=document.querySelector("#start")
|
|
button.addEventListener('click', event => {
|
|
window.location.href = "/views/game.html";
|
|
});
|
|
</script>
|
|
</section>
|
|
</body>
|
|
|
|
</html>
|