burger changes

This commit is contained in:
maaa 2023-08-02 21:08:11 +02:00
parent 51c0691f1a
commit ae5e4bc9f4
8 changed files with 127 additions and 61 deletions

22
main
View File

@ -309,6 +309,28 @@ def apiremovenote():
return {}, 422 return {}, 422
@app.route("/api/deleteaccount", methods=("GET", "POST"))
def apideleteaccount():
if request.method == "POST":
data = request.get_json()
secretKey = data["secretKey"]
userCookie = get_session(secretKey)
user = get_user(userCookie["id"])
conn = get_db_connection()
conn.execute("DELETE FROM notes WHERE creator = ?", (userCookie["id"],))
conn.commit()
conn.close()
conn = get_db_connection()
conn.execute("DELETE FROM users WHERE id = ?", (userCookie["id"],))
conn.commit()
conn.close()
return {}, 200
@app.route("/listusers/<secretkey>", methods=("GET", "POST")) @app.route("/listusers/<secretkey>", methods=("GET", "POST"))
def listusers(secretkey): def listusers(secretkey):
if secretkey == SECRET_KEY: if secretkey == SECRET_KEY:

View File

@ -97,10 +97,11 @@ body {
position: fixed; position: fixed;
right: 0; right: 0;
bottom: 0; bottom: 0;
padding: 4px;
border: none; border: none;
font-size: 16px; font-size: 16px;
width: calc(100% - 180px - 7px); width: calc(100% - 180px - 7px - 6px);
height: calc(100% - 50px - 6px); height: calc(100% - 50px - 6px - 8px);
font-family: "Inter", sans-serif; font-family: "Inter", sans-serif;
} }
@ -137,9 +138,23 @@ body {
border-radius: 8px; border-radius: 8px;
} }
.optionsDiv progress {
width: 100%;
background-color: #d8d8d8;
border: none;
border-radius: 99px;
height: 7px;
}
.optionsDiv progress::-moz-progress-bar {
background: #157efb;
}
.optionsDiv progresss::-webkit-progress-value {
background: #157efb;
}
.optionsDiv .exit { .optionsDiv .exit {
position: absolute; position: absolute;
right: 10px; right: 5px;
width: 40px; width: 40px;
height: 40px; height: 40px;
font-size: 16px; font-size: 16px;
@ -225,7 +240,7 @@ body {
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
} }
/* dark theme from my ass */ /* dark theme, slightly modified */
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
:root { :root {
@ -244,32 +259,24 @@ body {
body { body {
color: white; color: white;
background-color: var(--gray-900); background-color: #030303;
} }
.topBar { .topBar {
background-color: var(--gray-800); background-color: rgba(18, 18, 18, 0.5);
backdrop-filter: blur(0px); border-color: #303030;
-webkit-backdrop-filter: blur(20px);
border: none;
border-color: transparent;
border-width: 0px;
border-bottom-width: 0px;
} }
.notesBar { .notesBar {
background-color: var(--gray-800); background-color: #030303;
backdrop-filter: none; border: solid;
-webkit-backdrop-filter: none;
border: none;
border-color: #dadada00;
border-width: 0px; border-width: 0px;
border-top-width: 0px; border-right-width: 1px;
border-right-width: 0px; border-color: #303030;
} }
.noteBox { .noteBox {
background-color: var(--gray-900); background-color: #030303;
color: white; color: white;
} }
@ -282,8 +289,8 @@ body {
} }
.notesBar button { .notesBar button {
background-color: var(--gray-700); background-color: #141414;
border-color: var(--gray-600); border: none;
} }
.notesBar .selected { .notesBar .selected {
@ -297,18 +304,15 @@ body {
} }
.optionsDiv .exit { .optionsDiv .exit {
background-color: crimson; background-color: var(--gray-700);
color: white; color: white;
} }
.mainDiv .green { .mainDiv .feature {
background-color: var(--gray-800); background-color: #141414;
border: 1px solid #00b100; border: solid;
} border-width: 1px;
border-color: #303030;
.mainDiv .yellow {
background-color: var(--gray-800);
border: 1px solid #FFD700;
} }
.inoutdiv { .inoutdiv {

View File

@ -1,9 +1,11 @@
if (localStorage.getItem("DONOTSHARE-secretkey") !== null) { if (localStorage.getItem("DONOTSHARE-secretkey") !== null) {
window.location.replace("/app") window.location.replace("/app")
document.body.innerHTML = "Redirecting.."
throw new Error(); throw new Error();
} }
if (localStorage.getItem("DONOTSHARE-password") !== null) { if (localStorage.getItem("DONOTSHARE-password") !== null) {
window.location.replace("/app") window.location.replace("/app")
document.body.innerHTML = "Redirecting.."
throw new Error(); throw new Error();
} }

View File

@ -1,13 +1,15 @@
if (localStorage.getItem("DONOTSHARE-secretkey") === null) { if (localStorage.getItem("DONOTSHARE-secretkey") === null) {
window.location.replace("/") window.location.replace("/")
document.body.innerHTML = "Redirecting.."
throw new Error(); throw new Error();
} }
if (localStorage.getItem("DONOTSHARE-password") === null) { if (localStorage.getItem("DONOTSHARE-password") === null) {
window.location.replace("/") window.location.replace("/")
document.body.innerHTML = "Redirecting.."
throw new Error(); throw new Error();
} }
function formatBytes(a, b = 2) { if (!+a) return "0 Bytes"; const c = 0 > b ? 0 : b, d = Math.floor(Math.log(a) / Math.log(1024)); return `${parseFloat((a / Math.pow(1024, d)).toFixed(c))} ${["Bytes", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "ZiB", "YiB"][d]}` } function formatBytes(a, b = 2) { if (!+a) return "0 Bytes"; const c = 0 > b ? 0 : b, d = Math.floor(Math.log(a) / Math.log(1000)); return `${parseFloat((a / Math.pow(1000, d)).toFixed(c))} ${["Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"][d]}` }
let secretkey = localStorage.getItem("DONOTSHARE-secretkey") let secretkey = localStorage.getItem("DONOTSHARE-secretkey")
let password = localStorage.getItem("DONOTSHARE-password") let password = localStorage.getItem("DONOTSHARE-password")
@ -15,7 +17,9 @@ let password = localStorage.getItem("DONOTSHARE-password")
let usernameBox = document.getElementById("usernameBox") let usernameBox = document.getElementById("usernameBox")
let optionsCoverDiv = document.getElementById("optionsCoverDiv") let optionsCoverDiv = document.getElementById("optionsCoverDiv")
let exitThing = document.getElementById("exitThing") let exitThing = document.getElementById("exitThing")
let deleteMyAccountButton = document.getElementById("deleteMyAccountButton")
let storageThing = document.getElementById("storageThing") let storageThing = document.getElementById("storageThing")
let storageProgressThing = document.getElementById("storageProgressThing")
let usernameThing = document.getElementById("usernameThing") let usernameThing = document.getElementById("usernameThing")
let logOutButton = document.getElementById("logOutButton") let logOutButton = document.getElementById("logOutButton")
let notesBar = document.getElementById("notesBar") let notesBar = document.getElementById("notesBar")
@ -77,7 +81,8 @@ if (/Android|iPhone/i.test(navigator.userAgent)) {
noteBox.value = "" noteBox.value = ""
noteBox.readOnly = true noteBox.readOnly = true
fetch("/api/userinfo", { function updateUserInfo() {
fetch("/api/userinfo", {
method: "POST", method: "POST",
body: JSON.stringify({ body: JSON.stringify({
secretKey: secretkey secretKey: secretkey
@ -85,26 +90,53 @@ fetch("/api/userinfo", {
headers: { headers: {
"Content-type": "application/json; charset=UTF-8" "Content-type": "application/json; charset=UTF-8"
} }
}) })
.then((response) => response) .then((response) => response)
.then((response) => { .then((response) => {
async function doStuff() { async function doStuff() {
let responseData = await response.json() let responseData = await response.json()
usernameBox.innerText = responseData["username"] usernameBox.innerText = responseData["username"]
usernameBox.addEventListener("click", (event) => {
optionsCoverDiv.classList.remove("hidden")
usernameThing.innerText = "logged in as " + responseData["username"] usernameThing.innerText = "logged in as " + responseData["username"]
storageThing.innerText = "you've used " + formatBytes(responseData["storageused"]) + " out of " + formatBytes(responseData["storagemax"]) storageThing.innerText = "you've used " + formatBytes(responseData["storageused"]) + " out of " + formatBytes(responseData["storagemax"])
}); storageProgressThing.value = responseData["storageused"]
logOutButton.addEventListener("click", (event) => { storageProgressThing.max = responseData["storagemax"]
window.location.href = "/api/logout"
});
exitThing.addEventListener("click", (event) => {
optionsCoverDiv.classList.add("hidden")
});
} }
doStuff() doStuff()
}); });
}
usernameBox.addEventListener("click", (event) => {
optionsCoverDiv.classList.remove("hidden")
updateUserInfo()
});
logOutButton.addEventListener("click", (event) => {
window.location.href = "/api/logout"
});
exitThing.addEventListener("click", (event) => {
optionsCoverDiv.classList.add("hidden")
});
deleteMyAccountButton.addEventListener("click", (event) => {
if (confirm("are you REALLY sure that you want to delete your account? there's no going back.") == true) {
fetch("/api/deleteaccount", {
method: "POST",
body: JSON.stringify({
secretKey: secretkey
}),
headers: {
"Content-type": "application/json; charset=UTF-8"
}
})
.then((response) => response)
.then((response) => {
if (response.status == 200) {
window.location.href = "/api/logout"
} else {
alert("failed to delete account (" + String(response.status) + ")")
}
})
}
});
updateUserInfo()
function selectNote(nameithink) { function selectNote(nameithink) {
document.querySelectorAll(".noteButton").forEach((el) => el.classList.remove("selected")); document.querySelectorAll(".noteButton").forEach((el) => el.classList.remove("selected"));

View File

@ -1,9 +1,11 @@
if (localStorage.getItem("DONOTSHARE-secretkey") !== null) { if (localStorage.getItem("DONOTSHARE-secretkey") !== null) {
window.location.replace("/app") window.location.replace("/app")
document.body.innerHTML = "Redirecting.."
throw new Error(); throw new Error();
} }
if (localStorage.getItem("DONOTSHARE-password") !== null) { if (localStorage.getItem("DONOTSHARE-password") !== null) {
window.location.replace("/app") window.location.replace("/app")
document.body.innerHTML = "Redirecting.."
throw new Error(); throw new Error();
} }

BIN
static/mainimg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 663 KiB

View File

@ -29,9 +29,10 @@
<button class="exit" id="exitThing">X</button> <button class="exit" id="exitThing">X</button>
<h3>manage your account</h3> <h3>manage your account</h3>
<p id="usernameThing"></p> <p id="usernameThing"></p>
<progress id="storageProgressThing" value="0" max="100"></progress><br>
<p id="storageThing"></p> <p id="storageThing"></p>
<button id="logOutButton">log out</button> <button id="logOutButton">log out</button>
<button class="hidden" id="logOutButton">delete my account</button> <button id="deleteMyAccountButton">delete my account</button>
</div> </div>
</div> </div>

View File

@ -13,19 +13,22 @@
<div class="mainDiv"> <div class="mainDiv">
<br> <br>
<h1>burgernotes</h1> <h1>burgernotes</h1>
<p>minimal note taking app</p> <p>simple note taking app</p>
<br> <br>
<a href="/signup">sign up</a> <a href="/signup">sign up</a>
<a href="/login">log in</a> <a href="/login">log in</a>
<br><br><br> <br><br><br>
<img height="280px" src="/static/mainimg.png">
<br><br>
<div class="feature green"> <div class="feature green">
<h4>secure</h4> <h4>secure</h4>
<p>all your notes are fully end-to-end encrypted. only you can read your notes, not anyone else.</p> <p>all your notes are fully end-to-end encrypted. only you can read your notes, not anyone else.</p>
</div> </div>
<div class="feature yellow"> <div class="feature yellow">
<h4>always up-to-date</h4> <h4>always up-to-date</h4>
<p>your notes automatically sync across your devices.</p> <p>your notes seamlessly sync across your devices.</p>
</div> </div>
</div> </div>
</body> </body>