Burgernotes/templates/privacy.html

81 lines
3.6 KiB
HTML
Raw Normal View History

2023-08-16 14:42:08 +01:00
<!DOCTYPE html>
<html>
<head>
2023-11-03 20:24:40 +00:00
<title>PageBurger</title>
2023-08-16 14:42:08 +01:00
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />
</head>
<body>
2023-11-03 20:24:40 +00:00
<h1 class="w300">PageBurger Privacy Policy</h1>
2023-08-16 14:42:08 +01:00
<h2 class="w300">Preamble</h2>
2023-11-03 20:24:40 +00:00
<p><i>Please note that I am not a lawyer, please don't expect too much of this policy <3</i></p>
<p>Welcome to the PageBurger privacy policy! PageBurger is <a
href="https://centrifuge.hectabit.org/hectabit/pageburger">free & open source</a> software licensed under <a
2023-08-16 14:42:08 +01:00
href="https://www.gnu.org/licenses/agpl-3.0.en.html">GNU AGPL-3.0</a>.</p>
<h2 class="w300">Information collected when signing up</h2>
<p>When signing up for an account, we collect and store the following information:</p>
<ul>
<li>Username, and your password hashed</li>
<li>Date of creating account</li>
2023-08-19 14:17:23 +01:00
<li>Web browser "User Agent"</li>
</ul>
<h2 class="w300">Information collected when logging in</h2>
<p>When logging back in to your account, we collect and store the following information:</p>
<ul>
<li>Web browser "User agent"</li>
2023-08-16 14:42:08 +01:00
</ul>
<h2 class="w300">Information we collect while using our services</h2>
<p>When you create an note, we collect and use this information:</p>
<ul>
<li>Encrypted note content and title</li>
<li>Note creator</li>
<li>Note creation date</li>
<li>Note last edited date</li>
</ul>
<p>When you edit an note, we collect and use this information:</p>
<ul>
<li>Encrypted note content and title</li>
<li>Note last edited date</li>
</ul>
<h2 class="w300">How we use your data</h2>
<p>We use your data to make our services work. We don't share your information with third-parties.</p>
<h2 class="w300">We can't see notes you create's content and title</h2>
<p>Your notes are <a href="https://en.wikipedia.org/wiki/End-to-end_encryption">encrypted end-to-end</a> using AES
(Advanced Encryption Standard) 256-bit encryption.</p>
<p>We can only see:</p>
<ul>
<li>Note creation date</li>
<li>Note last edited date</li>
<li>Note creator</li>
</ul>
2023-11-03 20:24:40 +00:00
<p>Not note content or title.</p>
2023-08-16 14:42:08 +01:00
<h2 class="w300">We don't sell your data</h2>
<p>We don't sell or share your data to advertisers or third-parties.</p>
<h2 class="w300">Liability</h2>
2023-11-03 20:24:40 +00:00
<p>We take no responsibility for the use of PageBurger, or any external instances provided by third-parties. We
refuse liability for any inappropriate or illegal use of PageBurger.</p>
2023-08-16 14:42:08 +01:00
<p>You may view the AGPL-3.0 license which this software is provided to you with. A copy of the section is below.</p>
2023-11-03 20:24:40 +00:00
<p>IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
2023-08-16 14:42:08 +01:00
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
2023-11-03 20:24:40 +00:00
SUCH DAMAGES.</p>
2023-08-16 14:42:08 +01:00
<br><br>
</body>
<style>
body {
margin-left: 15px;
}
</style>
2023-11-03 20:24:40 +00:00
</html>