-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.62 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
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Amemory</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<link rel="stylesheet" href="css/style.css">
<script>
if (typeof window.__REACT_DEVTOOLS_GLOBAL_HOOK__ === 'object') {
__REACT_DEVTOOLS_GLOBAL_HOOK__.inject = function() {};
}
</script>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="/">
Amemory
</a>
<div class="navbar-item">
<a class="button modal-auth-open" id="signIn">
Sign in
</a>
<a class="button" id="signOut" style="display: none">
Sign out
</a>
</div>
</div>
</nav>
<section class="hero">
<div id="amemory">
</div>
</section>
<div class="modal modal-auth" id="modalAuth">
<div class="modal-background"></div>
<div class="modal-content modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Sign In</p>
<button class="delete" aria-label="close"></button>
</header>
<section class="modal-card-body">
<div id="authContainer"></div>
<div id="loader">Loading...</div>
</section>
</div>
</div>
<footer>
<script src="js/main.js"></script>
</footer>
</body>
</html>