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'])