This repository has been archived on 2021-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
2020-coding-projects/uno/client/index.html
2020-05-05 22:35:48 +02:00

39 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UNO</title>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<div class="dialog-container title-screen">
<div class="container">
<h1 class="title margin-bottom">ETT.IO</h1>
<button class="btn primary" id="btnCreateGame">Create New Game</button>
<button class="btn primary margin-bottom" id="btnJoinGame">Join Game</button>
<button class="btn">Credits</button>
</div>
</div>
<div class="dialog-container dialog hidden" id="dialogJoinGame">
<div class="container">
<div class="dialog-content">
<p>Enter a game code:</p>
<input type="text" id="inputGameCode">
<div class="dialog-footer">
<button class="btn primary" id="btnJoinGameConfirm">Join Game</button>
</div>
</div>
</div>
</div>
<canvas id="canvas"></canvas>
<script type="module" src="menu.js"></script>
</body>
</html>