-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
executable file
·53 lines (43 loc) · 1.33 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
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Splash Page</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<div class="card">
<div class="card-body">
<div class="card-image-zone">
<img src="logo.png" alt="Organization Logo" />
</div>
<div class="card-header-zone">
<h1>Arcadia University</h1>
<h3>Guest Wi-Fi Network</h3>
</div>
<div class="card-input-zone">
<input
type="email"
id="email"
placeholder="Your Email Address"
required
/>
<div style="margin: 10px"></div>
<label for="checkbox">I agree to the Terms and Conditions: </label>
<input type="checkbox" id="consent" name="checkbox" required />
</div>
<div class="card-message-zone" style="display: none"></div>
<div class="card-button-zone">
<button id="continue-btn">Continue</button>
</div>
</div>
<div id="bottom-bar">
<a href="#">Your Info</a>
<a href="#">Terms & Conditions</a>
<a href="#">Privacy Policy</a>
</div>
</div>
<script src="meraki.js"></script>
</body>
</html>