Add Start Playing page, clean up /generate page

This commit is contained in:
Chris Wilson
2021-10-11 20:52:30 -04:00
parent 065931cae7
commit e4f4c1f1be
7 changed files with 123 additions and 29 deletions

View File

@@ -82,6 +82,12 @@ def page_not_found(err):
return render_template('404.html'), 404
# Start Playing Page
@app.route('/start-playing')
def start_playing():
return render_template(f"startPlaying.html")
# Player settings pages
@app.route('/games/<string:game>/player-settings')
def player_settings(game):