Giới thiệu sản phẩm
from tkinter import*
from tkinter import messagebox
window = Tk()
window.title("messagebox login")
window.geometry("1000x1000+100+100")
window.configure(background="white")
def on_button_click():
messagebox.showwarning("cảnh báo","mk sai")
messagebox.showerror("I see one of them", "Here we go folk")
text = Label(window, text="đăng nhập tài khoản", fg="white", bg="red",width=20 ,font=("time 22 bold"))
text.pack()
username=Label(window, text="Username", fg="black", bg="white")
username.pack()
ten = Entry(window, bd=5)
ten.pack()
password = Label(window, text="Password", fg="black", bg='white')
password.pack()
mk = Entry(window,bd=5, show="*" )
mk.pack()
button= Button(window, text="login", command=on_button_click, fg="black", bg="blue",width = 5, font=("time 22 bold"))
button.pack()
window.mainloop()
Hình ảnh sản phẩm
Sản phẩm cùng tác giả
Sản phẩm liên quan
Không có sản phẩm nào
Đăng nhập để tham gia bình luận