如何在tkinter python中设置用户名和密码

时间:2013-05-13 15:19:32

标签: python passwords tkinter username

在tk inter中,他们可以使用特定的用户名和密码打开特定文件,就像管理员登录一样,他将被带到管理员页面。

from Tkinter import *

root = Tk()

w = Label(root, text="LiftServer(Sign-in)")
w.pack()

e1 = Label(root, text="******************************")
e1.pack()

w1 = Label(root, text="Username")
w1.pack()

e = Entry(root)
e.pack()

w2 = Label(root, text="Password")
w2.pack()

e1 = Entry(root)
e1.pack()

toolbar = Frame(root)


b = Button(toolbar, text="Enter", width=9)
b.pack(side=LEFT, padx=2, pady=2)

b = Button(toolbar, text="Cancel", width=9)
b.pack(side=LEFT, padx=2, pady=2)

def callback():
    execfile("signup.txt")
b = Button(toolbar, text="Sign-Up", command=callback, width=9)
b.pack(side=LEFT, padx=2, pady=2)

toolbar.pack(side=TOP, fill=X)

mainloop()

1 个答案:

答案 0 :(得分:0)

不完全确定你在问什么,但我认为这回答了它。

def callback():
    if w.get() == "Bob" and w2.get() == "password":
        openfile('file1')
    else:
        openfile('file2')