This repository has been archived by the owner on Nov 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (33 loc) · 1.5 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
38
39
40
41
42
43
<!-- Playa Project -->
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap core CSS -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="//connect.soundcloud.com/sdk.js"></script>
<script src="/js/socket.io.min.js"></script>
<script src="/js/soundcloud.playa.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy this line! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<!-- This is what the user sees -->
<body class="container-fluid">
<div id="loginForm" class="form-group">
<h1>Enter your nickname to begin</h1>
<div class="input-group">
<span class="input-group-addon">@</span>
<input type="text" id="usernameInput" class="form-control" placeholder="Username">
</div>
</div>
<div id="msgScreen" class="jumbotron">
</div>
<div id="trackList" class="list-group" style="max-height: 300px; overflow:auto;"></div>
</body>
</html>