diff --git a/app/frontend/components/auth/login.py b/app/frontend/components/auth/login.py index 38f92282491069b468ec4b4a0a32beb24f3e68da..f2330a5d06f516e7995c152cc2317b06c1b52848 100644 --- a/app/frontend/components/auth/login.py +++ b/app/frontend/components/auth/login.py @@ -15,7 +15,7 @@ def login_frame(parent, switch_func, API_URL): left_frame.grid(row=0, column=0, sticky="nsew") # Load and display the image - image_path = "app\static\login.jpg" # Change this to your image path + image_path = "app/static/front_end_img/login.jpg" # Change this to your image path img = ctk.CTkImage(light_image=Image.open(image_path), size=(1000, 1000)) # Resize as needed image_label = ctk.CTkLabel(left_frame, image=img, text="") # No text, only image image_label.place(relwidth=1, relheight=1)