-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloader.html
50 lines (42 loc) · 1.74 KB
/
loader.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/loader.css">
<script src="js/loader.js"></script>
<script src="js/index.js"></script>
</head>
<body>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html">Home</a>
<a href="candidates.html">Candidates</a>
<a href="information.html">Why Vote?</a>
<a href="registration.html">Registration</a>
</div>
<!-- Actual Main Content -->
<div id="supercontainer">
<span style="font-size:40px;cursor:pointer" onclick="openNav()"><span id="whiteHamburger">☰</span></span>
<div class="headerContainer">
<span style="display: inline-block;" class="zoomInLeft delay-1s">
<div id="headerText">
<a href="index.html">
<img src="css/voterTurnout.png">
</a>
</div>
</span>
</div>
<div class="loader" id="loader"></div>
<div id="bodyContainer" style="display: block">
<div class="bodyText">We are processing your information and <br>searching the local voting database to find a match.</div></div>
<div id="body2Container" style="display: none">
<div id="redX">✗</div>
<div id="bodyAfter">We're sorry - we were unable to find a match. <br><br>Would you like to use your <br>information to register to vote?</div>
<a href="confirmation.html">
<button class=useButton>Yes, I would like to use this information to register.</button></a>
<a href="index.html">
<button class=useButton>No, I would like to go back to the home page.</button></a>
</div>
</div>
</body>
</html>