-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·61 lines (58 loc) · 3.28 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Welcome To NoiseOwl</title>
<link rel="stylesheet" href="./assets/css/font-awesome.min.css">
<link href='//fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link href="./assets/css/bootstrap.css" rel="stylesheet">
<link href="./assets/css/signin.css" rel="stylesheet">
<script src="./assets/js/sha512.js"></script>
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="./assets/js/jquery.cookie.js"></script>
<script src="./assets/js/bootstrap.min.js"></script>
<script src="./assets/js/ft-validate.js"></script>
<script src="./assets/js/ft-common.js"></script>
<script src="./assets/js/no-common.js"></script>
</head>
<body id="body">
<div class="container col-md-12"> </div>
<div class="container col-lg-12 col-md-12">
<div class="container well col-md-6 col-md-offset-3" align="center">
<button id="no_playstop_btn" type="button" class="btn btn-success" data-toggle="tooltip" title="Play/Pause"><span class="glyphicon glyphicon-play"></span>/<span class="glyphicon glyphicon-pause"></span></button>
<button id="no_skip_btn" type="button" class="btn btn-success" data-toggle="tooltip" title="Skip Song"> <span class="glyphicon glyphicon-step-forward"></span> </button>
<button id="no_add_song_btn" type="button" class="btn btn-warning" data-toggle="tooltip" title="Add Song To Network"> <span class="glyphicon glyphicon-plus"></span> </button>
<button id="no_search_song_btn" type="button" class="btn btn-warning" data-toggle="tooltip" title="Search For Song"> <span class="glyphicon glyphicon-search"></span> </button>
<button id="no_add_playlist_btn" type="button" class="btn btn-info" data-toggle="tooltip" title="Add Playlist"> <span class="glyphicon glyphicon-plus"></span> </button>
<button type="button" class="btn btn-primary" data-toggle="tooltip" title="View Profile"> <span class="glyphicon glyphicon-user"></span> </button>
<button type="button" class="btn btn-primary" data-toggle="tooltip" title="Back To Gatekeeper"> <span class="glyphicon glyphicon-home"></span> </button>
<button type="button" class="btn btn-danger" data-toggle="tooltip" title="Logout"> <span class="glyphicon glyphicon-remove"></span> </button>
</div>
<div class="container col-md-4">
<h4 class='text-success well'>Queue</h4>
</div>
<div class="container col-md-4">
<h4 class='text-success well'>Songs</h4>
</div>
<div class="container col-md-4">
<h4 class='text-success well'>Playlists</h4>
</div>
<div class="clearfix"></div>
<div id="no_queue" class="container well col-md-4" style="overflow-y: scroll">
<h2 class="form-signin-heading text-info" align="center"> </h2>
</div>
<div id="no_songs" class="container well col-md-4" style="overflow-y: scroll">
<h2 class="form-signin-heading text-info" align="center"> </h2>
</div>
<div id="no_playlists" class="container well col-md-4" style="overflow-y: scroll">
<table id="no_playlist_table" class="table table-hover table-condensed">
</table>
</div>
</div>
</div>
</body>
</html>