diff --git a/main.py b/main.py index 97b19fd..34bb4d4 100644 --- a/main.py +++ b/main.py @@ -11,7 +11,10 @@ def index(username = None): @app.route('/contact') def contact(): return "

Book your first consultation:

Epasts: example@example.com

" - +@app.route('/') +@app.route('/') +def first_page(): + return render_template("first_page.html") @app.route('/login', methods=['GET', 'POST']) def login(): if request.method == 'POST':