-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpass.html
51 lines (45 loc) · 2.07 KB
/
pass.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hall Pass</title>
<meta name="description" content="Easily create digital hall passes for your students. No setup required!">
<meta name="viewport" content="width=device-width initial-scale=1.0">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/pass.css">
<link rel="icon" type="image/x-icon" href="assets/pass.png">
</head>
<body onload="getURLData()">
<div class="grid-container">
<!-- Header Section -->
<div class="header-container">
<h1 id="title">HALL PASS</h1>
<div class="header" id="header">
<div id="current-date">01/01/2000</div>
<div id="current-time">12:00:00</div>
</div>
</div>
<div id="pass-container">
<div id="details">
<div class="card color2" id="student-name">Student Name</div>
<div class="card color1" id="issue-date-time">
<div id="destination">Destination</div>
<div id="date">January 01, 2000</div>
<div id="time">
<span id="start">12:00 AM</span> to <span id="end">12:05 AM</span>
</div>
</div>
</div>
<div id="signature" class="card">
<div id="signed-by">Signed By:</div>
<div class="card color2" id="teacher-signature">Teacher's Signature</div>
</div>
</div>
<div class="footer">
<a href="https://github.com/jiannazzone/Digital-Hall-Pass" target="_blank" rel="noopener noreferrer">How does this work?</a>
<a href="https://www.flaticon.com/free-icons/identity" title="identity icons">Favicon by Pixel Perfect</a>
</div>
</div>
<script src="scripts/script.js" async defer></script>
</body>
</html>