forked from bandipurhouse/studentdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (98 loc) · 4.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bandipur Student Database</title>
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<!-- custom stylesheet -->
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="res/fav2.png" type="image/png">
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark sticky-top">
<div class="container-fluid">
<a class="navbar-brand mb-0 h1"href="#">
<img src="res/favicon.png" height="35" class="me-2"> Bandipur Student Database
</a>
</div>
</nav>
<main>
<div class="container-fluid text-center py-5">
<h1 class="display-5 heading">
Bandipur Student Database
</h1>
<h2 class="text-muted fs-4 ">Lookup the group details of student and their Groups/GLs in Bandipur</h2>
</div>
<div class="container-fluid my-3 vp">
<form class="d-flex flex-row justify-content-center sform" onsubmit="return false">
<select class="form-select" id="ssel">
<option selected>Email ID</option>
<option value="1">Group ID</option>
</select>
<input
class="form-control mx-2"
type="search"
placeholder="Search"
id="sbar" aria-label="Search"
autocomplete="off">
<a class="btn btn-outline-success" id="sbut">Search</a>
</form>
<div class="legend">
<br>
<p><b>Student ID         Group Number         GL Name [GL mail ID]</b></p>
</div>
<div class="container-fluid my-3 tbox text-center">
<textarea
name="students"
id="students"
cols="105" rows="15"
readonly placeholder="no results"></textarea>
</div>
</div>
<div class="container-fluid my-3 tips">
<!-- <h2 class="text-dark fs-3">Examples</h2> -->
<!-- <div class="tipsbody">
<div class="text">
The search bar uses regex to match the queries,
advanced search queries can thus be performed easily.
</div>
<h3 class="text-dark fs-5">Group ID</h3>
<code>...</code> <p>gives only 3 digit groups </p>
<code>..</code> <p>gives 2 or 3 digit groups </p>
<code>^..$</code> <p>gives only 2 digit groups </p>
<code>20.</code> <p>gives 3 digit groups starting with 20 </p>
<code>20.*</code> <p>gives 2 or 3 digit groups starting with 20 </p>
<code>^29$</code> <p>gives only group 29 </p>
<h3 class="text-dark fs-5">Email ID</h3>
<code>21F1</code> <p>gives first batch students </p>
<code>6567|3422</code> <p>gives two results </p>
<code>0{5}</code> <p>gives emails with 5 or more zeros </p>
<h3 class="text-dark fs-5">House</h3>
<code>Sundarbans</code> <p>gives Sundarbans members </p>
<code>Sunderbans</code> <p>gives nothing </p>
<h3 class="text-dark fs-5">Regex References:</h3>
<div class="tips-reference">
<a class="link" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions">
MDN Web Docs
</a>
<br>
<a class="link" href="https://regexr.com/">Regexr</a>
</div> -->
</div>
</div>
</main>
<footer class="footer sticky-bottom bg-dark">
<div class="container-fluid text-muted">
Bandipur Student Database © Bandipur House 2022 | Cloned from @sayan01
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous" defer></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js" integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT" crossorigin="anonymous" defer></script>
<script src="script.js" defer></script>
</body>
</html>