From e1dc193153378cdafa400512fff8431b1fecf994 Mon Sep 17 00:00:00 2001 From: Linnnus Date: Mon, 1 Apr 2024 12:50:19 +0200 Subject: Add join form HTML --- app.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'app.py') diff --git a/app.py b/app.py index cfedee5..c58833c 100644 --- a/app.py +++ b/app.py @@ -8,6 +8,10 @@ app = Bottle() def index(): return template("index") +@app.route("/join.html") +def join_form(): + return template("join") + @app.route("//") def server_static(type, filename): return static_file(filename, root=f"./static/{type}/") -- cgit v1.2.3