-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
132 lines (95 loc) · 4.48 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>FaceJam</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- <script src="https://connect.soundcloud.com/sdk/sdk-3.3.0.js"></script> -->
<style>
@import url('https://fonts.googleapis.com/css?family=Gloria+Hallelujah');
</style>
<script type="text/javascript" src="assets/javascript/app.js"></script>
</head>
<body>
<div class="modalFade hidden" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Quick Tip!</h4>
</div>
<div class="modal-body">
<p>The image url needs to end with .jpg .jpeg .gif .png or .tiff</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default close" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<h1 class="billBoard">FaceJam</h1>
<!-- <img src="assets/images/radioface.png" class="faceJamLogo" alt="logo"> -->
<div class="container">
<div class="row">
<div class="col-sm-6">
<h2>Upload Pic Here</h2>
<div class="imageUpload">
<label for="example-url-input" class="col-2 col-form-label">Input Image URL Here</label>
<div class="col-10">
<input class="form-control" type="url" value="https://getbootstrap.com" id="userImage">
<br>
<input class="btn btn-primary" type="submit" value="Submit" id="submit">
<br>
<img id="dummyHead" src="assets/images/dummyhead.jpeg" alt="dummyHead"
width="75%" height="75%">
</div>
</div>
</div>
<div class="col-sm-6">
<table class="songTable">
<h2>Song Information</h2>
<tr>
<th>Song Title</th>
<td id="songTitle"></td>
</tr>
<tr>
<th>Artist</th>
<td id="artist"></td>
</tr>
<tr>
<th>Release Date</th>
<td id="releaseDate"></td>
</tr>
</table>
<br>
<br>
<h2>Happiness Meter!</h2>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
<br>
<br>
<br>
<br>
<!-- ////////////Audio player is here /////////-->
<footer>
<div class="col-md-12">
<audio id="audio" preload="auto"></audio>
<div class="btn-group">
<img src="assets/images/play.png" id="play" alt="play" height="15%" width="15%">
<img src="assets/images/stop.png" id="stop" alt="stop" height="15%" width="15%">
<!-- < <img src="assets/images/next.png" id="next" alt="next" height="42" width="42"> turn back on if playlist feature is implemented-->
</div>
</div>
<footer>
</body>
</html>