-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.html
37 lines (31 loc) · 963 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>repl.it</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;1,700&family=Open+Sans&display=swap');
</style>
</head>
<body>
<h1>ATTENDANCE4CLASS</h1>
<h2><u>Attendance Summary Report</u></h2>
<!-- Button below to go back to page if needed to check on attendance for another day or teacher -->
<div class = "row">
<div class ="column">
<img src="./assets/summary.png" alt="Attendance Report" class="results">
</div>
<div class = "column">
<img src="./assets/graph.png" alt="Attendance Graph" class="results">
</div>
</div>
<div>
<a href="/index.html">
<button type="button" class ="return">Back to Main Page</button>
</a>
</div>
<script src="AttendanceChecker.py"></script>
</body>
</html>