From f93f503f167ad08d7f4e82288229986f7a64ccf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anna=20=C4=BBa=C5=A1ko?= Date: Tue, 7 May 2024 11:16:04 +0000 Subject: [PATCH] Update main.py --- main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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':