Include shutdown files

This commit is contained in:
Tracker-Friendly 2024-10-15 11:56:08 +01:00
parent f0cf54b55f
commit 37ce68453f
1 changed files with 85 additions and 0 deletions

85
shutdown/index.html Normal file
View File

@ -0,0 +1,85 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Burgernotes</title>
<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" />
<link rel="icon" href="/static/svg/favicon.svg">
</head>
<body>
<h1 class="w300">Burgernotes Discontinuation FAQ</h1>
After a year in operation, on October 20th 2024, Burgernotes will shut down.
<br><br>
You might be asking, how will this affect me?
<ul>
<li>You'll no longer be able to access Burgernotes, and all of your notes.</li>
<li>You may download your notes before October 20th.</li>
<li>Your data will be permanently deleted after October 20th, 2024.</li>
<li>Third-party instances will be unaffected, but will likely no longer be maintained.</li>
<li>As of October 15th, 2024, you may no longer create a new Burgernotes account.</li>
</ul>
<h2 class="w300">Downloading your notes</h2>
You may download your notes until October 20th. To do this:
<ul>
<li>Open Burgernotes</li>
<li>Open the settings menu</li>
<li>Press "Export notes"</li>
</ul>
Your notes will be saved to a JSON file.
<h2 class="w300">The future</h2>
Burgernotes is not gone forever - we are rebasing and starting from scratch to give you an even better product.
In the meantime, you can use:
<ul>
<li>Standard Notes - a noting app very similar to Burgernotes</li>
<li>Joplin - A pretty powerful note-taking app</li>
</ul>
<h2 class="w300">Special thanks</h2>
Special thanks to all of these amazing people that made Burgernotes possible:
<ul>
<li>hippoz</li>
<li>ctapak</li>
<li>Mollomm1</li>
<li>Arzumify</li>
<li>Maaa</li>
<li>Karimrir</li>
<li>Pandarose</li>
<li>Neptune</li>
<li class="hidden" id="youThing"></li>
</ul>
</body>
<style>
body {
margin-left: 15px;
@media (prefers-color-scheme: dark) {
color: white !important;
}
}
</style>
<script>
fetch(localStorage.getItem("SETTING-homeServer") + "/api/userinfo", {
method: "POST",
body: JSON.stringify({
secretKey: localStorage.getItem("PRIVATE-secretKey")
}),
headers: {
"Content-type": "application/json; charset=UTF-8"
}
})
.then((response) => {
async function doStuff() {
let responseData = await response.json()
if (response.status === 200) {
let youThing = document.getElementById("youThing")
youThing.classList.remove("hidden")
youThing.innerText = "You, " + responseData["username"] + ", for using Burgernotes!"
}
}
doStuff()
})
</script>
</html>