generated from nighthawkcoders/Nighthawk-Pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
37 lines (34 loc) · 991 Bytes
/
search.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
---
layout: default
search_exclude: true
---
<style>
</style>
<body>
<div style="margin-top:4%;">
<div class="input-group">
<input type="text" id="filterInput" placeholder="Enter">
<div class="button-elements"><button id="search">Search</button></div>
</div>
<link rel="stylesheet" type="text/css" href="/assets/search/search.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/sockjs-client/1.1.4/sockjs.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/stomp.js/2.3.3/stomp.min.js"></script>
<script src="/assets/search/search.js" type="module">
</script>
</div>
<table class="center">
<thead>
<tr>
<div class="metadata">
<th>Artist</th>
<th>Track</th>
<th>Album Cover</th>
<th>Preview</th>
<th>Play Song</th>
</div>
</tr>
</thead>
<tbody id="result">
</tbody>
</table>
</body>