-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.47 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
<!DOCTYPE html>
<html lang="EN">
<head>
<title>VITB Hostel Attendance</title>
<link rel="stylesheet" href="css/root.css" />
<link rel="stylesheet" href="css/index.css" />
<!-- NAVBAR RELATED CSS -->
<link rel="stylesheet" href="css/navbar.css" />
<link rel="stylesheet" href="css/header.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<!-- NAVBAR HTML: (Expandable by adding more anchor tags) -->
<label>
<input type="checkbox" />
<span class="menu"> <span class="hamburger"></span> </span>
<ul>
<li id="h1"><a href="index.html">Home</a></li>
<li><a href="public_pages/report.php">View Today's Attendance Report</a></li>
<li><a href="public_pages/previousReport.php">View Previous Reports</a></li>
<li><a href="public_pages/uploadTurnstile.html">Upload Turnstile Data</a></li>
<li><a href="public_pages/uploadHostelers.html">Upload Hostel Masterdata</a></li>
<li><a href="public_pages/uploadLeave.html">Upload Hosteler Leave Data</a></li>
</ul>
</label>
<div class="overlay"></div>
<!-- NAVBAR HAMBURGER ENDS HERE. -->
<header>
<div>
<img src="./img/logoblack.png" alt="VITLogo" />
</div>
<div id="center">
<p>Hostel attendance management system</p>
<p>[HAMS v0.3]</p>
</div>
<div></div>
</header>
<div id="main-content">
</div>
</body>
</html>