diff --git a/app/app.py b/app/app.py index 94c3cb0..67dbfd0 100644 --- a/app/app.py +++ b/app/app.py @@ -84,5 +84,10 @@ def raum(id): + a["richtung"] + '   ' return html +@app.route("/reset") +def reset(): + session.pop("spieler", None) # Session vergessen (DB bleibt!) + return redirect("/app/") + if __name__ == "__main__": app.run(host="0.0.0.0", port=9008) \ No newline at end of file