-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathauthentication.html
More file actions
29 lines (25 loc) · 976 Bytes
/
authentication.html
File metadata and controls
29 lines (25 loc) · 976 Bytes
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
<html>
<head>
<meta charset="UTF-8">
<title>KM · Sign In</title>
<!-- Styling -->
<link rel="stylesheet" type="text/css" href="assets/stylesheets/authentication.css">
<!-- JavaScript -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src="assets/javascript/display-utilities.js"></script>
<script type="text/javascript" src="assets/javascript/authentication.js"></script>
<script src="//apis.google.com/js/client.js?onload=checkAuth"></script>
</head>
<body>
<img class="header" src="assets/images/header.png">
<div id="authorize-div" style="display: none">
<p>Sign in to access your calendar</p>
<!--Button for the user to click to initiate auth sequence -->
<div id="signin" onclick="handleAuthClick(event)">
<span class="icon"></span>
<span class="buttonText">Google</span>
</div>
</div>
<pre id="output"></pre>
</body>
</html>