mirror of
https://github.com/AlecM33/Werewolf.git
synced 2025-12-26 15:57:50 +01:00
43 lines
1.5 KiB
HTML
43 lines
1.5 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
|
|
<span>
|
|
<input id="name" type="text"/>
|
|
<p id="name-error"></p>
|
|
</span>
|
|
</label>
|
|
<label>
|
|
Time (Minutes, Optional)
|
|
<input id="time" type="number"/>
|
|
</label>
|
|
</form>
|
|
<div id="card-select-header">
|
|
<button id="reset-btn" class="app-btn">Reset Deck</button>
|
|
<h3 id="game-size">0 Players</h3>
|
|
</div>
|
|
<div id="card-select">
|
|
|
|
</div>
|
|
<a href="/">
|
|
<button class="app-btn">Back</button>
|
|
</a>
|
|
<button id="create-btn" class="app-btn">Create</button>
|
|
</div>
|
|
</div>
|
|
<script type="module" src="/static/setup.js"></script>
|
|
</body>
|
|
</html>
|