DmitrMakeev commited on
Commit
ed91b35
·
verified ·
1 Parent(s): c98d598

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -63,7 +63,9 @@ def index():
63
  return render_template_string(html)
64
 
65
 
66
-
 
 
67
 
68
 
69
 
 
63
  return render_template_string(html)
64
 
65
 
66
+ @app.route('/settings', methods=['GET'])
67
+ def settings():
68
+ return render_template('settings.html')
69
 
70
 
71