From 5f48bcb3ed524dbd20e424170136da6b6d4a2300 Mon Sep 17 00:00:00 2001 From: stilbruch Date: Wed, 23 Mar 2022 17:49:08 -0500 Subject: Fix bug and add pretty icons --- app/routes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/routes.py') diff --git a/app/routes.py b/app/routes.py index c1424b5..e6214dc 100644 --- a/app/routes.py +++ b/app/routes.py @@ -6,12 +6,12 @@ from tables.user import User @app.route("/", methods=["GET"]) def index(): - return render_template('base/index.html') + return render_template('index.html') @app.route("/home", methods=["GET"]) @login_required def home(): - return render_template('base/home.html') + return render_template('home.html') @app.route("/login", methods=['GET', 'POST']) def login(): -- cgit v1.2.3