Files
Werewolf/create_game.html
2019-08-31 19:22:54 -04:00

41 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Werewolf</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel = "stylesheet" type = "text/css" href = "static/styles.css" />
<script src="/socket.io/socket.io.js"></script>
</head>
<body>
<div class="app-content">
<div id="create-game-container">
<h2 class="app-header-secondary">Create A Game</h2>
<form>
<label>
Name
<input id="name" type="text"/>
</label>
<label>
Time (Minutes, Optional)
<input id="time" type="number"/>
</label>
</form>
<h3>Add cards to the deck.</h3>
<div id="card-select-header">
<button id="reset-btn">Reset Deck</button>
<h3 id="game-size">0 Players</h3>
</div>
<div id="card-select">
</div>
<a href="/">
<button class="app-btn-secondary">Cancel</button>
</a>
<button id="create-btn" class="app-btn">Create</button>
</div>
</div>
<script type="module" src="/static/setup.js"></script>
</body>
</html>