-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>The Resistance</title>
<script src="/socket.io/socket.io.js"></script>
<script type="text/javascript" src="/static/assets/scripts/jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="/static/assets/styles/resistance.css" type="text/css" media="screen">
</head>
<body>
<div class="wrapper">
<div id="menu" class="main">
<div id="main">
<h1>The Resistance</h1>
<ul>
<li><a href="#" class="button new">New Game</a></li>
<li><a href="#" class="button join">Join Game</a></li>
</ul>
</div>
</div>
<div id="newgame" class="main">
<div id="main">
<h1>The Resistance</h1>
<ul>
<li><a href="#" class="button start">Start Game</a></li>
<li><a href="#" class="button invite">Invite Players</a></li>
</ul>
</div>
</div>
<canvas id="canvas" width="800" height="480">
<p>You're browser does not support the required functionality to play this game.</p>
<p>Please update to a modern browser such as <a href="www.google.com/chrome/?">Google Chrome</a> to play.</p>
</canvas>
</div>
</body>
<script src="/static/game.js"></script>
</html>