2016-12-20 06:50:26 +00:00
|
|
|
from flask import Flask, render_template
|
|
|
|
|
2016-12-06 12:46:40 +00:00
|
|
|
app = Flask(__name__)
|
|
|
|
from influxdb import InfluxDBClient
|
|
|
|
|
|
|
|
def db_main(host='localhost', port=8086):
|
|
|
|
user = 'root'
|
|
|
|
password = 'root'
|
|
|
|
dbname = 'gas'
|
|
|
|
|
2016-12-20 06:50:26 +00:00
|
|
|
@app.route('/success')
|
|
|
|
def success():
|
|
|
|
return "Form success!"
|
|
|
|
|
2016-12-27 03:43:38 +00:00
|
|
|
@app.route('/', methods=['GET', 'POST'])
|
2016-12-20 06:50:26 +00:00
|
|
|
def main_page():
|
2016-12-27 03:43:38 +00:00
|
|
|
return render_template('index.html')
|
|
|
|
|
|
|
|
@app.route('/add_time')
|
|
|
|
def add_time():
|
|
|
|
return 'admin'
|
|
|
|
|
|
|
|
@app.route('/admin')
|
|
|
|
def admin_index():
|
|
|
|
return 'admin'
|
|
|
|
|
|
|
|
@app.route('/login')
|
|
|
|
def login():
|
|
|
|
pass
|
|
|
|
|
|
|
|
@app.route('/logout')
|
|
|
|
def logout():
|
|
|
|
pass
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
app.run(debug=True, host='0.0.0.0')
|