forked from Ailur/burgernotes-server
Merge branch 'main' of ssh://hectabit.org/HectaBit/PageBurger
This commit is contained in:
commit
0906635646
|
@ -1,85 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
|
|
||||||
<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" />
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<h1 class="w300">Burgernotes Discontinuation FAQ</h2>
|
|
||||||
After 4 months, on November 12, 2023, 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 November 12, 2023.</li>
|
|
||||||
<li>Your data will be permanently deleted after November 12, 2023.</li>
|
|
||||||
<li>Third-party instances will be unaffected, but will likely no longer be maintained.</li>
|
|
||||||
<li>As of November 3, 2023, you may no longer create a new Burgernotes account.</li>
|
|
||||||
<li>If you still want to use Burgernotes after the discontinuation date, use the <a href="https://notes.hectabit.org/">Hectabit.org</a> instance, by Tracker-Friendly.</li>
|
|
||||||
</ul>
|
|
||||||
<h2 class="w300">Downloading your notes</h3>
|
|
||||||
You may download your notes until November 12th. 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">Alternatives</h3>
|
|
||||||
Like Burgernotes - all the alternatives listed below are free software
|
|
||||||
<ul>
|
|
||||||
<li>Standard Notes - very similar to Burgernotes</li>
|
|
||||||
<li>Joplin - A pretty powerful note taking app</li>
|
|
||||||
</ul>
|
|
||||||
<h2 class="w300">Special thanks</h3>
|
|
||||||
Special thanks to all of these amazing people that made Burgernotes possible:
|
|
||||||
<ul>
|
|
||||||
<li>hippoz</li>
|
|
||||||
<li>ctapak</li>
|
|
||||||
<li>Mollomm1</li>
|
|
||||||
<li>Tracker-Friendly</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("/api/userinfo", {
|
|
||||||
method: "POST",
|
|
||||||
body: JSON.stringify({
|
|
||||||
secretKey: localStorage.getItem("DONOTSHARE-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>
|
|
Loading…
Reference in New Issue