-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
103 lines (94 loc) · 4.26 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
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-65470600-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-65470600-2');
</script>
<!-- meta tags -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Find songs with similar keys for your mixing and mashup needs.">
<meta name="keywords" content="Sridatt, Bhamidipati, Music, Mixing, DJ, Songs, Bollywood, Hip-Hop, Rap, Pop, Mashups, Indian, American, Key, Major, Minor, Artist, Muse, Panel">
<meta name="author" content="Sridatt Bhamidipati">
<!-- FB -->
<meta property="og:title" content="MusePanel" />
<meta property="og:site_name" content="MusePanel" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://musepanel.com/" />
<meta property="og:image" content="site_image.png" />
<meta property="og:description" content="Find songs with similar keys for your mixing and mashup needs." />
<title> MusePanel - Home </title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Oswald:200,300,400" rel="stylesheet">
<script src="https://www.gstatic.com/firebasejs/4.5.0/firebase.js"></script>
<script src="http://code.jquery.com/ui/1.12.0/jquery-ui.js" ></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Custom files -->
<script src="./assets/js/utils.js"></script>
<script src="./assets/js/main.js"></script>
<link href="./assets/css/main.css" rel="stylesheet">
</head>
<body>
<div>
<img id="mp-logo" style="display:inline-block;" src="./mp_90_bold.png" width="70px" height="70px">
<div style="display:inline-block;" id="product-title">MusePanel</div>
</div>
<div id="product-caption">Find songs with similar keys for your mixing and mashup needs.</div>
<div class="spinner"></div>
<input id="songSearch" name="" placeholder="Search for a song" autofocus>
<div id="empty-message"> No results found. </div>
</body>
<div id="addsong-caption">Is MusePanel missing a song?
<a data-toggle="modal" data-target="#addSongModal"> Add a song </a>
</div>
<!-- Modal -->
<div class="modal fade" id="addSongModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h5 class="modal-title" id="addSongModalTitle">Add a Song</h5>
</div>
<div class="modal-body">
<input id="song-input" type="" name="" placeholder="Song" type="search">
<input id="artist-input" type="" name="" placeholder="Artist" type="search">
<select id="key-select">
<option>C</option>
<option>Db</option>
<option>D</option>
<option>Eb</option>
<option>E</option>
<option>F</option>
<option>Gb</option>
<option>G</option>
<option>Ab</option>
<option>A</option>
<option>Bb</option>
<option>B</option>
</select>
<select id="interval-select">
<option>Major</option>
<option>minor</option>
</select>
</div>
<div class="modal-footer">
<div id="missing-fields">Please fill in both song and artist! </div>
<button type="button" id="cancel-modal" data-dismiss="modal">Cancel</button>
<button type="button" id="add-song-button">Add Song</button>
</div>
</div>
</div>
</div>
<footer>
<div> Created by <a target="_blank" href="http://sridattbhamidipati.me"> Sridatt Bhamidipati </a> © 2017 </div>
</footer>
</html>