-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (41 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<title>Bookoala</title>
<!-- Semantic-UI i Jquery -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"
integrity="sha256-t8GepnyPmw9t+foMh3mKNvcorqNHamSKtKRxxpUEgFI=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css"
integrity="sha256-9mbkOfVho3ZPXfM7W8sV2SndrGDuh7wuyLjtsWeTI1Q=" crossorigin="anonymous" />
<!-- OAuth2 skripta -->
<script src='oauth.js'></script>
<!-- Google API -->
<script async defer src="https://apis.google.com/js/api.js" onload="this.onload=function(){};handleClientLoad()"
onreadystatechange="if (this.readyState === 'complete') this.onload()">
</script>
<!-- Moj CSS i JS skripta-->
<link rel="stylesheet" href="cover.css" type="text/css" />
</head>
<body id="root">
<div class="ui inverted vertical center aligned segment">
<nav class="ui container">
<h1 class="ui inverted header">Bookoala</h1>
<div class="ui borderless inverted compact menu">
<a class="active item">Test page</a>
<a class="item">My books</a>
<a class="item">My friends</a>
</div>
</nav>
<div id="login" class="ui middle aligned content container">
<h1 style="padding-top: 5pc;" class="ui middle aligned inverted header">Proof of concept:</h1>
<div id="sign-in-or-out-button"></div>
</div>
<button id="revoke-access-button" class="ui inverted mini button" style="display: none;">Revoke access</button>
<footer id="footer" class="ui inverted vertical segment">
<div id="auth-status" style="padding-top:10px;"></div>
</footer>
</div>
</body>
</html>