summaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
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}/")