Files
Werewolf/create_game.html

36 lines
1.2 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" />
</head>
<body>
<div class="app-content">
<div id="create-game-container">
<h2 class="app-header">Create A Game</h2>
<form>
<label>
Name
<input type="text"/>
</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>