-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (96 loc) · 2.94 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Vanilla Note</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body class="loading logged-out">
<div id="loader">Loading…</div>
<header class="site-header">
<a class="logo-link" href="/">
<img
class="logo"
src="./img/logo.png"
alt="Vanilla Note logo"
width="400"
height="64"
/>
</a>
<nav class="site-nav">
<ul id="logged-out-nav-list" class="nav-list list-reset">
<li>
<button id="authorize-button" class="button">
Sign in or create account
</button>
</li>
</ul>
<ul class="nav-list logged-in-nav list-reset">
<li>
<!-- toggle nav -->
<a
role="button"
id="navbar-burger"
aria-label="Open or close menu"
aria-expanded="false"
>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
<ul id="nav-list-dropdown" class="list-reset visually-hidden">
<li>
<span class="text-label">User ID</span>
<span id="user-id"></span>
</li>
<li>
<span class="text-label">Email</span> <span id="email"></span>
</li>
<li>
<button id="sign-out-button" class="button">Sign out</button>
</li>
</ul>
</li>
</ul>
</nav>
</header>
<main class="main">
<div id="get-started" class="container-small">
<h1 class="get-started-title">
Start <span class="start-action">taking notes</span>
</h1>
<p>
Take simple notes. Keep a journal. Write a private micro-blog.<br />
Create an account or sign in to get started.
</p>
</div>
<div class="dashboard container-small">
<div class="card">
<form id="note-form" action="">
<textarea
id="note-textarea"
class="textarea"
name="note"
placeholder="Write a note..."
required
></textarea>
<!-- Button text added dynamically -->
<button
type="submit"
id="note-submit-button"
class="button"
></button>
</form>
</div>
</div>
<div id="notes"></div>
<div class="powered-by">
Powered by <a href="https://cloud.bzr.dev/">Bazaar</a>
</div>
</main>
<script src="https://unpkg.com/@bzr/bazaar"></script>
<script src="js/app.js"></script>
</body>
</html>