Update app.py
Browse files
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 |
-
|
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 |
|