-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (48 loc) · 2.13 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="cs">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="data/neon.css?v=6">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="Subnotes - private, secure, flatfile encrypted note-taking app based on zero-knowledge principle.">
<link rel="icon" type="image/png" href="data/favicon.png">
</head>
<body>
<section class="old hidden">
<button id="add-note" title="add new note"></button>
<button id="add-folder" title="add new folder"></button>
<button id="logout" title="logout"></button>
<button id="search" title="search notes, folders and their content"></button>
<button id="move" class="hidden" title="move this folder elsewhere"></button>
<button id="delete-folder" class="hidden" title="delete this folder"></button>
<button id="rename-folder" class="hidden" title="rename this folder"></button>
<button id="close-red-mode" class="hidden" title="close the search mode"></button>
<button id="close-yellow-mode" class="hidden" title="close the move mode"></button>
<button id="paste" class="hidden" title="paste the file here in this folder"></button>
<span class="note-name"></span>
<hr>
<ul id="loop">
</ul>
</section>
<section class="new">
<form action="" method="post">
<input type="password" name="password" placeholder="Fill in your password here..." id="password" autofocus>
<input type="submit" id="login" value="Log in/Sign up">
</form>
</section>
<section class="detail hidden">
<button id="go-back" title="go back"></button>
<button id="save-note" class="hidden" title="save note"></button>
<button id="logout" title="logout"></button>
<button id="move" title="move this note elsewhere"></button>
<button id="delete-note" title="delete this note"></button>
<button id="rename-note" title="rename this note"></button>
<span class="note-name"></span>
<hr>
<textarea id="single" spellcheck="false"></textarea>
</section>
<script src="data/crypto.js"></script>
<script src="data/do.js?v=5"></script>
</body>
</html>