From 762e51f88643748489c831b7f5bf394865918489 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Tue, 4 Nov 2025 10:36:57 +0100 Subject: [PATCH] rewrite --- routes/auth_routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/auth_routes.py b/routes/auth_routes.py index bf229ca..c5109a5 100644 --- a/routes/auth_routes.py +++ b/routes/auth_routes.py @@ -83,7 +83,7 @@ def login(): except Exception as e: logger.error(f"[AUTH] Login error: {e}", flush=True) - return render_template('auth/login.html', error='Login error'), 500 + return render_template('login.html', error='Login error'), 500 @auth_bp.route('/logout', methods=['GET', 'POST'])