diff --git a/faceitstalker_docker/app/main.py b/faceitstalker_docker/app/main.py index e8968e2..2f6a3c1 100644 --- a/faceitstalker_docker/app/main.py +++ b/faceitstalker_docker/app/main.py @@ -40,8 +40,13 @@ def index(): +@app.route("/contact") +def contact(): + return render_template('contact.html') - +@app.route("/donate") +def donate(): + return render_template('donate.html') @@ -94,8 +99,8 @@ def get_evererything(steamid): if __name__ == "__main__": - #app.run(host="127.0.0.1", port=8080, debug=True) - serve(app, host='0.0.0.0', port=8080) + app.run(host="127.0.0.1", port=8080, debug=True) + #serve(app, host='0.0.0.0', port=8080) diff --git a/faceitstalker_docker/app/templates/base.html b/faceitstalker_docker/app/templates/base.html index 2367ae8..5f7e726 100644 --- a/faceitstalker_docker/app/templates/base.html +++ b/faceitstalker_docker/app/templates/base.html @@ -60,6 +60,18 @@ .input-form-container textarea.status_screen_input { resize: none; } + + .footer { + position:absolute; + bottom:0; + width:100%; + background: #212121; + margin 0 auto; + } + + .text-muted{ + margin 0 auto; + }
@@ -89,6 +101,11 @@ {% block content %} {% endblock %} +