DmitrMakeev commited on
Commit
6f117b6
1 Parent(s): d7ae16d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -33,6 +33,9 @@ def settings():
33
  return render_template('settings.html')
34
 
35
 
 
 
 
36
 
37
 
38
 
 
33
  return render_template('settings.html')
34
 
35
 
36
+ @app.route('/online', methods=['GET'])
37
+ def online():
38
+ return render_template('online.html')
39
 
40
 
41