initial commit

This commit is contained in:
Alec Maier
2019-08-29 22:14:54 -04:00
parent cc32a2a844
commit f1fcdf43c0
648 changed files with 102404 additions and 0 deletions

27
create_game.html Normal file
View File

@@ -0,0 +1,27 @@
<!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>
<a href="/">
<button class="app-btn-secondary">Cancel</button>
</a>
<button class="app-btn" onclick="generateAccessCode()">Create</button>
</div>
</div>
<script src="/static/setup.js"></script>
</body>
</html>