-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselfpage.html
78 lines (66 loc) · 1.51 KB
/
selfpage.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Gonna Find You - Music Ranking</title>
<script type="text/javascript" src="scripts/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="scripts/audiojs/audio.min.js"></script>
</head>
<body>
<header>
<!--Set portrait as the background image-->
<h1>Username</h1>
<form action="search.action" method="post" id="searchbar" style="display:none">
<p><input type="text" name="searchtext" id="searchinputBox" title="tell me what you want...">
<input type="button" value="Find U" class="searchBtn" title="find music"></p>
</form>
</header>
<div id="content">
<div class="audiobox">
<script>
audiojs.events.ready(function() {
var as = audiojs.createAll();
});
</script>
<audio src="" id="player"></audio>
</div>
<div id="downloadList">
<ul>
<li></li>
<li></li>
<li></li>
</ul>
<div class="pageSelector">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
</div>
</div>
<div id="uploadList">
<ul>
<li></li>
<li></li>
<li></li>
<li>
<form action="uploadmic" method="post" enctype="multipart/form-data">
<p><input type="file" name="micUploador">
<input type="submit" name="uploadSubmit" value="submit"></p>
</form>
</li>
</ul>
<div class="pageSelector">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
</div>
</div>
</div>
<footer>
<a href="index.html">Home</a>
</footer>
</body>
</html>