-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
59 lines (53 loc) · 2.18 KB
/
dashboard.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
<!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>Hotel Tracker System| Dashboard</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="./css/style.css">
<!-- css -->
<link rel="stylesheet" href="./css/style.css">
</head>
<body id="dashboard">
<div class="container dashboard p-4">
<div class="contact-image">
<img src="https://image.ibb.co/kUagtU/rocket_contact.png" alt="rocket_contact"/>
</div>
<div class="action_btn pull-right">
<button class="btn btn-primary" id="logout_btn">Logout <i class="fa fa-sign-out"></i></button>
</div>
<div class="row flex-row justify-content-center align-items-center">
<h3>Administrator Dashboard | Reports</h3>
</div>
<table class="table table-bordered table-light">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Name</th>
<th scope="col">Student ID</th>
<th scope="col">Room Number</th>
<th scope="col">Report</th>
</tr>
</thead>
<tbody id="reports_tb">
</tbody>
</table>
</div>
<!-- footer -->
<div class="footer">
<p>© <span id ="year"></span> Team Genuis ℜeports Tracker| All rights reserved |Limited to no imitation</>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom JS -->
<script src="./js/dashboard.js"></script>
</body>
</html>