-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.29 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
<html>
<head>
<title>
Team 334 LARS
</title>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<meta name="google-signin-client_id" content="679754199338-7ulh4hifgejlecgeeg7gibnasncia9rt.apps.googleusercontent.com">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/js/materialize.min.js"></script>
</head>
<body>
<nav class="black">
<ul>
<li style="padding-left: 8px;">
<span class="grey-text text-darken-1">Look, a Robot! system (LARS)</span>
</li>
<li>
<a href="#">
Login
</a>
</li>
</ul>
</nav>
<content>
<div id="Weclome" class="center">
<h1>
The Team 334 LARS System
</h1>
</div>
<div>
<div class="container">
<h3 class="center">Log in:</h3>
<div class="g-signin2" data-onsuccess="onSignIn"></div>
</div>
</div>
</content>
</body>
<script>
function onSignIn(googleUser) {
window.location.href = "protected/Interface.html";
}
</script>
</html>