Untitled

Anonymous
plain_text
10/18/2024 1:12 PM
340 B
11
Indexable
def sign_up():
    username = entry_username.get()
    password = entry_password.get()
    if username and password:
        messagebox.showinfo("Success", "Sign Up Successful")
    else:
        messagebox.showwarning("Warning","Please fill all fields")
Editor is loading...
Leave a Comment