-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.html
More file actions
82 lines (77 loc) · 3.56 KB
/
notes.html
File metadata and controls
82 lines (77 loc) · 3.56 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title data-lang="title">Notes Client</title>
<meta name="description" content="Simple WebDAV Notes Client">
<meta name="keywords" content="Notes, WebDAV, Client, simple">
<script src="/index.minified.js" async type="module"></script>
<script src="/dist/notesBundle.js" async type="module"></script>
<script defer src="https://analyse.nyxnord.de/script.js" data-website-id="da404ef2-9e81-47ac-95d2-f1d4ddce40a5"></script>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body class="normal">
<header>
<div class="header-right">
<div class="header-right-buttons">
<a href="/privacy.html" class="privacy-link" data-lang="privacy">Privacy</a>
|
<button class="button" id="theme-toggle">Toggle Dark Mode</button>
<br>
</div>
<div class="search-box">
<label for="search" style="display: none">Search</label><input type="text" id="search" placeholder="Search..."/>
<div id="search-results"></div>
</div>
</div>
<h1> <a href="/index.html">Tasks.</a> | Notes.</h1>
<span id="back_button_span" style="display: none"><button class="button" id="back_button">back</button> | </span>
<button class="button" id="settings_button">Settings</button>
<span id="save_span"></span>
<div id="toolbar_buttons"></div>
<br> <br>
</header>
<main>
<h2 style="font-weight: bold; color: #c21919;" id="big_login_status">Not Logged In</h2>
<div id="notes"></div>
<br> <br>
<div id="local_notes"></div>
</main>
<div class="popup" id="settings">
<h2>Settings</h2>
<label>DAV Server URL: <input type="url" id="url_input" placeholder="https://example.com/remote.php/dav" style="width: 50%"/></label> <br>
<label>Notes Folder URL: <input type="url" id="url_input_notes" placeholder="https://example.com/remote.php/dav/files/<user>/Notes" style="width: 50%"/></label> <br>
<label>Username: <input type="text" id="username_input" placeholder="..." style="width: 50%" /></label> <br>
<label>Password: <input type="password" id="password_input" placeholder="..." style="width: 50%" autocomplete="current-password"/></label> <br>
<br>
<button class="button" id="login_button">Login</button> |
<button class="button" id="login_remember_button">Login and Remember me</button>
<br>
<button class="button" id="login_forget_button">Forget me</button>
<br> <br>
<div id="login_status"></div>
<br> <br>
</div>
<footer>
<br> <br> <br>
<p> -------------------------------------------------- </p>
<p>
<a href="/privacy.html" class="privacy-link" data-lang="privacy">Privacy</a>
|
<a href="https://github.com/LundiNord/simpleTaskClient"
data-umami-event="outbound-link-click"
data-umami-event-url="https://github.com/LundiNord/simpleTaskClient"
>Source</a>
|
<a href="https://status.leonbruns.de/"
data-umami-event="outbound-link-click"
data-umami-event-url="https://status.leonbruns.de/"
>Status</a>
</p>
</footer>
</body>
</html>