summaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-04-01 12:50:19 +0200
committerLinnnus <[email protected]>2024-04-01 12:50:19 +0200
commite1dc193153378cdafa400512fff8431b1fecf994 (patch)
treef469f03901e21afedefa688f694b3ad7672c031a /app.py
parentf7d53d8ca882764c0a9891ffcf697136377cdfe3 (diff)
Add join form HTML
Diffstat (limited to 'app.py')
-rw-r--r--app.py4
1 files changed, 4 insertions, 0 deletions
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")
[email protected]("/join.html")
+def join_form():
+ return template("join")
+
@app.route("/<type:re:styles|images>/<filename>")
def server_static(type, filename):
return static_file(filename, root=f"./static/{type}/")