-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.html
44 lines (38 loc) · 1.48 KB
/
report.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
<html>
<head>
<title>Student Check In Report</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-Control" content="no-store">
<link rel="stylesheet" href="./static/css/main.css" />
<script src="./static/js/main.js"></script>
</head>
<!-- Hidden Pagination Counters-->
<input type="text" id="current_page" value="1" style="display: none;">
<input type="text" id="total_pages" value="" style="display: none;">
<body id="SU" onload="get_project_details(this)">
<div class="main">
<!-- Page Header Section -->
<div class="container header">
<table width="100%">
<tr>
<td style="color: white;">
<p class="main-text"><b>Project:</b> <span id="project_name">Loading ...</span></p>
<p class="main-text"><b></b> <span id="date"></span></p>
</td>
<td style="color: white;">
<button onclick="location.reload()" class="float-right">Refresh</button> <!-- JS inbuilt function to refresh page -->
</td>
</tr>
</table>
</div>
<!-- Page Body Section -->
<div class="body">
<table cellspacing="10" align="center" id="student_list">
<tr>
<td>Loading ...</td>
</tr>
</table>
</div>
</div>
</body>
</html>