-
Notifications
You must be signed in to change notification settings - Fork 1
/
sign-out.html
83 lines (76 loc) · 2.96 KB
/
sign-out.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>
<head>
<meta charset="UTF-8">
<meta name="description" content="Chzklkt - Keeping Your Chocolate in Day">
<meta name="keywords" content="HTML,CSS,XML,JavaScript">
<meta name="author" content="Matsuru Hoshi">
<meta name="date" content="Jan 2020">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Google's MDL-->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.pink-purple.min.css" />
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<!--Cognito & JavaScript-->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="js/amazon-cognito-auth.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.596.0.min.js"></script>
<script src="./js/amazon-cognito-identity.min.js"></script>
<script src="./js/config.js"></script>
<script type="text/javascript" src="./js/sign-out.js"></script>
<title>Chzklkt</title>
</head>
<body>
<!-- Simple header with fixed tabs. -->
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header
mdl-layout--fixed-tabs">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<!-- Title -->
<span class="mdl-layout-title"></span>
</div>
<!-- Tabs -->
<div class="mdl-layout__tab-bar mdl-js-ripple-effect">
<!--<a href="#fixed-tab-1" class="mdl-layout__tab is-active">Tab 1</a>-->
<a href="./my-chocolates.html" class="mdl-layout__tab">My Chocholates</a>
<a href="#fixed-tab-3" class="mdl-layout__tab">Discover</a>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">Menu</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="./index.html">Home</a>
<a class="mdl-navigation__link" href="./sign-in.html">Sign in</a>
</nav>
</div>
<main class="mdl-layout__content">
<!--<section class="mdl-layout__tab-panel is-active" id="fixed-tab-1">
<div class="page-content"><!-- Your content goes here</div>
</section>-->
<section class="mdl-layout__tab-panel" id="fixed-tab-2">
<div class="page-content">
<p>Hi how are you</p>
</div>
</section>
<section class="mdl-layout__tab-panel" id="fixed-tab-3">
<div class="page-content"><!-- Your content goes here --></div>
</section>
</main>
</div>
<!--Get below the nav menu at the top-->
<br><br><br><br><br>
<div class="container">
<div>
<h1>Sign Out</h1>
<div id="signout">
<p></p>
</div>
</div>
</div>
</body>
<script>
window.onload = function() {
const temp_var = signOut();
}
</script>
</html>