-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·56 lines (56 loc) · 3.07 KB
/
index.html
File metadata and controls
executable file
·56 lines (56 loc) · 3.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Component</title>
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:400,700">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<div id="loading-container" class="loading-container">
<iframe src="https://lottie.host/?file=7e03b9f7-f84e-4f8e-899c-e8865079d148/bGlbxGwInU.json"></iframe>
<h1 id="load-title"></h1>
<div class="spinner"></div>
</div>
<header>
<h2 id="search-title">Search Students</h2>
<nav>
<a id="search-grades" title="search grades" href="#">Grades</a>
<a id="search-students" title="search students" href="#">Students</a>
<a id="search-courses" title="search courses" href="#">Courses</a>
<a id="search-teachers" title="search teachers" href="#">Teachers</a>
<a id="search-classes" title="search classes" href="#">Classes</a>
</nav>
</header>
<main>
<section id="component-container">
<div class="search-container">
<button id="filter-btn">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 576 512"><path
d="M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 480c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H320z" />
</svg>
</button>
<input id="search-input" type="text" class="search-box" placeholder="Search Students" autocomplete="off">
<button id="search-btn" class="fa fa-search search-icon"></button>
<div id="search-suggestions">
</div>
<div id="search-filters">
</div>
</div>
<div id="search-view">
<div id="loading-container">
<div class="spinner"></div>
</div>
</div>
</section>
</main>
<footer>
© 2023 COP - Group Eight
</footer>
<script type="module" src="main.js" defer></script>
</body>
</html>