This commit is contained in:
maaa 2023-08-19 19:25:12 +02:00
parent 38c0f90285
commit a7739b3443
2 changed files with 2 additions and 0 deletions

1
main
View File

@ -113,6 +113,7 @@ def signup():
def login(): def login():
return render_template("login.html") return render_template("login.html")
# Privacy policy
@app.route("/privacy") @app.route("/privacy")
def privacy(): def privacy():
return render_template("privacy.html") return render_template("privacy.html")

View File

@ -10,5 +10,6 @@ Logging out..
<script> <script>
localStorage.removeItem("DONOTSHARE-secretkey") localStorage.removeItem("DONOTSHARE-secretkey")
localStorage.removeItem("DONOTSHARE-password") localStorage.removeItem("DONOTSHARE-password")
localStorage.removeItem("CACHE-username")
window.location.replace("/") window.location.replace("/")
</script> </script>