-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (39 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="google-signin-client_id" content="637060621328-uc4ag2saftdl5vr82i2jjpk1l0tk76m4.apps.googleusercontent.com">
<link rel="stylesheet" href="css/index.css" /> <!-- offline CSS -->
<link rel="stylesheet" href="BarnyardWeb/css/index.css" /> <!-- online CSS -->
<title>Barnyard Web</title>
</head>
<body>
<div id = "header"><h1>Barnyard Web</h1>
<div class="g-signin2 hide_after_login" data-onsuccess="onSignIn" id = "gLogin"></div>
<div id = "logged_in" class = "hide_until_login" style="display:none">Logged in. <a href="#" onclick="signOut();">Sign out?</a></div>
</div>
<br />
<div class = "center hide_after_login" id = "login_prompt"> To login into Barnyard please sign in with a registered account. </div>
<div id = "wrong_email" style="display:none">Your email needs to be registered with an allowed gsuite.</div>
<div id = "grid" style="display:none">
Show this after login
</div>
<form>
num:<input type="number" name="num" id = "position" value="1"> </input>
<input type = "button" onClick = "read(num.value)" value="read_test"/>
</from>
<h1> 9999 </h1>
<!--
<input type="button"onclick="onSignIn()"value="ShowMe">
-->
<script src="https://apis.google.com/js/platform.js" async defer></script>
<script src="js/index.js"></script>
<script src="BarnyardWeb/js/index.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>
<script src = "js/sheets.js"></script>
<script src = "Barnyard/js/sheets.js"></script>
</body>
</html>