Ich möchte ein Passwortskript mit GUI coden, aber ich weiß nicht, was ich falsch mache.
Hier mein Skript:
from tkinter import *
def open_password():
password = Tk()
password.geometry("300x300")
entry2 = Entry(password, width= 20)
entry2.pack()
b_password1 = Button(password, text="LOGIN", command=button_command2)
b_password1.pack()
password.mainloop()
def adminrechte():
admin = Tk()
admin.geometry("300x300")
adminlabel = Label(admin, text="das sind admin rechte")
adminlabel.pack()
admin.mainloop()
def button_command2():
text = entry1.get()
if entry1 == "admin":
b_login1 = Button(root, text="weiter", command=adminrechte)
b_login1.pack()
print("logged in test")
return NONE
def button_command():
text = entry1.get()
if text == "username":
b_login1 = Button(root, text="weiter", command=open_password)
b_login1.pack()
return NONE
root = Tk()
root.geometry("300x300")
entry1 = Entry(root, width= 20)
entry1.pack()
Button(root, text="Ok", command=button_command).pack()
root.mainloop()
Eingabefeld, nicht Ausgabe...