added settings page placeholder
This commit is contained in:
parent
1d792ea341
commit
54ae907d81
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
|||
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
|
||||
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
||||
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
||||
<meta charset='UTF-8'>
|
4
web.py
4
web.py
|
@ -248,5 +248,9 @@ def ccc_c():
|
|||
def cc_connect_complete():
|
||||
return render_template('cc_connect_complete.html', bg="background-image:url('{}')".format(session['ccavi']))
|
||||
|
||||
@app.route('/settings')
|
||||
def settings():
|
||||
return render_template('settings.html')
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(host="0.0.0.0", port=4734) #4734 is t9 for 'greg'
|
Loading…
Reference in a new issue