mirror of
https://github.com/AlecM33/Werewolf.git
synced 2026-01-02 01:03:24 +01:00
initial commit
This commit is contained in:
27
create_game.html
Normal file
27
create_game.html
Normal 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>
|
||||
Reference in New Issue
Block a user