-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (54 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Music Album Store</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://unpkg.com/[email protected]/tachyon.min.js"
integrity="sha384-w8efYzZSanBkhmSezV71UPT1uzvN9Ecr4ehP5gizbGl1esC0V/+2w7lqiT6FkUOe" type="module" crossorigin
defer></script>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<div id="navbar">
<div id="service-name">MoosicBase</div>
<div id="controls">
<div class="controls-inp-group">
<input type="checkbox" id="auto-load" class="cm-toggle" /><label for="auto-load">Auto-Load</label>
</div>
<div class="controls-inp-group">
<input type="checkbox" id="auto-sort" class="cm-toggle" /><label for="auto-sort">Auto Sort</label>
</div>
</div>
</div>
<main id="myContainer">
<div id="search-bar">
<input type="text" name="search" id="search" placeholder="Search Here">
</div>
<div class="create-item-bar">
<button id="create-item">Create</button>
</div>
<table>
<thead>
<th><span class="hover-underline-animation">ID<span class="sort-indicator"></span></span></th>
<th><span class="hover-underline-animation">User ID<span class="sort-indicator"></span></span></th>
<th><span class="hover-underline-animation">Title<span class="sort-indicator"></span></span></th>
<th>Actions</th>
</thead>
<tbody>
</tbody>
</table>
<div class="btn-div">
<button id="btn-load-more">Load More</button>
</div>
</main>
<div id="loading"></div>
<script type="module" src="/js/index.js"></script>
</body>
</html>