Added DNS yap and fixed password "hash"

Some silly goober left in the Cg=== from the terminal when he ran `echo
"password" | base64`. Cute little terminal escape characters.
This commit is contained in:
foreverpyrite
2025-12-02 20:46:09 -05:00
parent df5e6191e2
commit 1e666c760d
3 changed files with 26 additions and 6 deletions

View File

@@ -35,7 +35,7 @@ def login():
if user != "ronniej":
return Response("User not found", HTTPStatus.UNAUTHORIZED)
if base64_encode(password).decode() != "Z29GQUxDT05TMTIzCg==":
if base64_encode(password).decode() != "Z29GQUxDT05TMTIz":
return Response("Incorrect password", HTTPStatus.UNAUTHORIZED)
return send_file("./website/account.html")