-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·41 lines (36 loc) · 1.18 KB
/
index.php
File metadata and controls
executable file
·41 lines (36 loc) · 1.18 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
require('config.php');
$_SESSION['heat'] = 0;
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Web JukeBox</title>
<link rel="stylesheet" href="<?= $_bootstrap_css ?>">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="button.css">
<script src="<?= $_jquery_js ?>"></script>
<script src="<?= $_bootstrap_js ?>"></script>
<script src="script.js"></script>
</head>
<body>
<div class="container">
<div class="row"><div class="col-xs-12"><div class="space"></div></div></div>
<?php for($i=0;$i<HEAT_SIZE;$i++): ?>
<div class="row">
<div class="col-xs-12 classy-btn song-btn" song-id="" id="s<?= $i+1 ?>">
<span class="song-name"></span>
<span class="badge badge-inverse pull-right song-votes"></span>
</div>
</div>
<div class="row"><div class="col-xs-12"><div class="space"></div></div></div>
<?php endfor; ?>
</div>
<div class="modal"><h1></h1></div>
<div class="navbar navbar-fixed-bottom classy-btn" id="skip">
<span class="song-name">Skip</span>
</div>
</body>
</html>