This commit is contained in:
maaa 2023-11-03 17:54:50 +01:00
parent a50ba6758e
commit f248efbcdf
1 changed files with 5 additions and 3 deletions

View File

@ -67,10 +67,12 @@
.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>