-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
35 lines (32 loc) · 1.21 KB
/
privacy.html
File metadata and controls
35 lines (32 loc) · 1.21 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
<html>
<head>
<meta lang="en">
<meta charset="UTF-8">
<title>Launch</title>
<link rel="stylesheet" href="fonts/fira_code.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/png" href="img/favicon.ico">
</head>
<body style="color:black">
<h1>Privacy Policy</h1>
<div>
I don't store your data.
</div>
<p>
Anything you do on Launch is saved to your browser. All files and folders
you make are stored in LocalStorage, within your browser itself.
</p>
<p>
There is no database on the server for your data to be stored on.
If you want, check the code out on <a style="text-decoration: underline;" href="https://github.com/Kirimson/launch">Github</a>
</p>
<p>
Note: If you want to hide the "Privacy" link at the bottom of launch, use
the command: <code>launch-hide-privacy</code> (Or to show it again:
<code>launch-show-privacy</code> )
</p>
<p>
<a style="text-decoration: underline;" href="/">Back to Launch</a>
</p>
</body>
</html>