-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 1003 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<script src="/socket.io/socket.io.js"></script>
<script src="/jquery-2.1.4.min.js"></script>
<script src="index.js"></script>
<link href='https://fonts.googleapis.com/css?family=Merriweather' rel='stylesheet' type='text/css'>
<link href='index.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='inputcontainer'>
<form name="login" method='POST' action="" id="loginform">
<input id='username' placeholder='Username' type='text' name='username'>
<input id='password' placeholder='Password' type='password' name='password'>
<input type='button' name="submit" value='Login!' id='send' onclick="loginindex();" disabled>
<h5 id='error'></h5>
</form>
</div>
</body>
</html>