-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
83 lines (75 loc) · 3.24 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daizzy The Chatbot</title>
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet">
<link rel="stylesheet" href="styles/styles.css"></link>
<link rel="stylesheet" href="styles/animations.css"></link>
</head>
<body>
<nav id="navigation">
<ul>
<li id="first-child">
<a href="http://elections.hawaii.gov/voters/volunteer/">Volunteer Website</a>
</li>
<li>
<a href="html/about.html" target="_blank">About the Developers</a>
</li>
<div id="iconCorner">
<a href="https://github.com/HACC17/No-Internet" target="_blank"><img id="gitIcon" src="images/github-icon.png"></a>
</div>
</ul>
</nav>
<div id="container">
<div id="side-nav">
<div id="closeButton">×</div>
<div id="bothCals">
<iframe src="https://calendar.google.com/calendar/embed?title=Hawaii%20Volunteer%20Schedule&showPrint=0&height=500&wkst=1&bgcolor=%2333ccff&src=nointernethacc%40gmail.com&color=%231B887A&ctz=Pacific%2FHonolulu" style="border-width:0" width="100%" height="500" frameborder="0" scrolling="no"></iframe>
<div id="calendar2">
<p id="calTitle2">Your Calendar</p>
<button id="authorize-button2">Load Events</button>
<button id="signout-button2">Sign Out</button>
<pre id="content2"></pre>
</div>
</div>
</div>
<div id="overlayTab" onclick="openOverlay();">
<img id="menu-icon" src="images/menu-icon.png"">
</div>
<div id="welcomeScreen">
<div id="info">
<h2>
Say Hello to <span style="color: white">Daizz</span><span style="color: #FBD676">y</span>!
<br/>
<span style="font-size: 16.5px; font-style: italic; color: #babfc4;">The Election Volunteer Helper</span>
<hr/>
</h2>
<h3>Created by a few highschool students, Daizzy can help you get started as an election volunteer without the hassle! Talk to Daizzy the Chatbot to sign up, schedule a training session, and more.</h3>
<div id="startBtn" onclick="start();">Start Scheduling with Daizzy</div>
<img id="daisy" src="images/daisy.png">
</div>
</div>
<div id="chat">
<div id="daizzy">
<div id="chatTitle">Daizzy The Chatbot</div>
</div>
<div id="chatLog">
<div class="bot">
<p class="chatMessage"><b>Daizzy:</b> Hey there! Would you like to sign up to volunteer?</p>
</div>
</div>
<input type="text" id="input" value="">
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="javascript/app.js"></script>
<script src="javascript/calendar.js"></script>
<script src="javascript/calendar2.js"></script>
<script async defer src="https://apis.google.com/js/api.js"
onload="this.onload=function(){};handleClientLoad()"
onreadystatechange="if (this.readyState === 'complete') this.onload()">
</script>
</body>
</html>