-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlobby.html
More file actions
20 lines (20 loc) · 720 Bytes
/
lobby.html
File metadata and controls
20 lines (20 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<script src="/socket.io/socket.io.js"></script>
<script src="/jquery-2.1.4.min.js"></script>
<script src="lobby.js"></script>
<link href='https://fonts.googleapis.com/css?family=Merriweather' rel='stylesheet' type='text/css'>
<link href='lobby.css' rel='stylesheet' type='text/css'>
<title>Testing Grounds</title>
<link rel="icon" href="http://i.imgur.com/6gT3pP9.png">
</head>
<body>
<input id="musicrange" type="range" min="0" max="100" />
<img id="music" onclick="mutemusic()">
<button onclick="showgamemodes();">Play</button>
<div id="mainbox"></div>
<h5 id="error"></h5>
<button onclick="logout();">Logout</button>
</body>
</html>