diff options
author | Linnnus <[email protected]> | 2024-04-01 12:50:19 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-04-01 12:50:19 +0200 |
commit | e1dc193153378cdafa400512fff8431b1fecf994 (patch) | |
tree | f469f03901e21afedefa688f694b3ad7672c031a /app.py | |
parent | f7d53d8ca882764c0a9891ffcf697136377cdfe3 (diff) |
Add join form HTML
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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}/") |