-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathframe_footer.php
64 lines (53 loc) · 2.38 KB
/
frame_footer.php
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
62
63
64
<?php
if(sessionAuthenticated()){?>
<div id="nowPlayingBarContainer">
<div id="nowPlayingBar">
<div id="nowPlayingLeft">
<div class="content">
<iframe src="https://open.spotify.com/embed?uri=spotify%3Atrack%3A33Q6ldVXuJyQmqs8BmAa0k" width="100%" frameborder="0" allowtransparency="true"></iframe>
</div>
</div>
<!-- <div id="nowPlayingCenter">
<div class="content playerControls">
<div class="buttons">
<button class="controlButton shuffle" title="Shuffle button">
<img src="assets/images/icons/shuffle.png" alt="Shuffle"/>
</button>
<button class="controlButton previous" title="Previous button">
<img src="assets/images/icons/previous.png" alt="Previous"/>
</button>
<button class="controlButton play" title="Play button">
<img src="assets/images/icons/play.png" alt="Play"/>
</button>
<button class="controlButton pause" title="Pause button" style="display: none;">
<img src="assets/images/icons/pause.png" alt="Pause"/>
</button>
<button class="controlButton next" title="Next button">
<img src="assets/images/icons/next.png" alt="Next"/>
</button>
<button class="controlButton repeat" title="Repeat button">
<img src="assets/images/icons/repeat.png" alt="Repeat"/>
</button>
</div>
</div>
</div>
<div id="nowPlayingRight">
<div class="volumeBar">
<button class="controlButton volume" title="Volume button">
<img src="assets/images/icons/volume.png" alt="Volume">
</button>
<div class="progressBar">
<div class="progressBarBg">
<div class="progress"></div>
</div>
</div>
</div>
</div>
</div>
-->
</div>
</body>
</html>
<?php
}
?>