-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplay.html
More file actions
26 lines (26 loc) · 1.17 KB
/
play.html
File metadata and controls
26 lines (26 loc) · 1.17 KB
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
<!DOCTYPE html>
<html>
<head>
<script src="/socket.io/socket.io.js"></script>
<script src="/jquery-2.1.4.min.js"></script>
<script src="play.js"></script>
<script src="roles.js"></script>
<link href='https://fonts.googleapis.com/css?family=Merriweather' rel='stylesheet' type='text/css'>
<link href='play.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()">
<div id="generalgame">
<select id="playerlist" size="6"></select>
<div id="chat"><ul id="chatfield"></ul>
<input type='text' id='c' onKeyDown='checkKeyL(event)' /></div>
<div id="lobbystuff"><button onclick="leavelobby()">Leave Lobby</button>
<button id="startgame" onclick="startgame()">Start</button>
<button id="customroles" onclick="customon()">Custom Roles <b>Off</b></button>
<select id="roleallign"></select>
<div id="roleselectdiv"><select id="roleselect"></select></div>
<div id="rolelistdiv"><select id="rolelist" size="15"></select></div></div></div>
</body>