DmitrMakeev commited on
Commit
4201031
·
verified ·
1 Parent(s): 2d3f93a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -12,7 +12,9 @@ app.config['DEBUG'] = True
12
 
13
 
14
 
15
-
 
 
16
 
17
 
18
 
@@ -63,9 +65,7 @@ def index():
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
 
 
12
 
13
 
14
 
15
+ @app.route('/online', methods=['GET'])
16
+ def online():
17
+ return render_template('online.html')
18
 
19
 
20
 
 
65
  return render_template_string(html)
66
 
67
 
68
+
 
 
69
 
70
 
71