From b08671256f4f8d3a623beebca597b39c9f4a7444 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Minh?= <w11220031@st.phenikaa-uni.edu.vn> Date: Tue, 18 Mar 2025 09:42:42 +0700 Subject: [PATCH] Modified login frontend --- app/frontend/components/auth/login.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/frontend/components/auth/login.py b/app/frontend/components/auth/login.py index 38f9228..f2330a5 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) -- GitLab