Huge update.

This commit is contained in:
2025-06-11 03:31:59 +12:00
parent 699b829696
commit d1390bd770
14 changed files with 429 additions and 148 deletions

View File

@@ -19,6 +19,10 @@ registry = RoomRegistry()
def index():
return render_template("home.html")
@app.route('/settings')
def settings():
return render_template("settings.html")
@app.route('/room/<room_code>')
def room(room_code):
return render_template('room.html', room_code=room_code)