-
Notifications
You must be signed in to change notification settings - Fork 52
/
passwordHelp.html
33 lines (29 loc) · 1.05 KB
/
passwordHelp.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notes - password protection</title>
<style>
body {
margin: 20px;
font-family: sans-serif;
}
li {
margin: 0.5em 0;
}
</style>
</head>
<body>
Some information on the password protection of notes:
<ul>
<li>DO NOT USE a password you have used elsewhere, there is NO guarantee that the password cannot be discovered</li>
<li>Notes <u>are not</u> encrypted, just password protected to stop casual user access</li>
<li>You can not password protect a blank note and deleting all text from a note will also remove the password</li>
<li>Anyone who has access to the files on the server would be able to read the note if they wanted to</li>
<li>The password protection is only intended to give a very simple level of security</li>
<li>Want to store a secure note? Keep it somewhere else</li>
<li>NEVER store anything confidential</u> in any note</li>
</ul>
</body>
</html>