Commit c97c6a4a by BellCodeEditor

save project

parent c63db253
Showing with 8 additions and 2 deletions
...@@ -2,4 +2,10 @@ def get_input(self): ...@@ -2,4 +2,10 @@ def get_input(self):
self.name = self.e1.get() self.name = self.e1.get()
self.password1 = self.e2.get() self.password1 = self.e2.get()
self.password2 = self.e3.get() self.password2 = self.e3.get()
return self.name, self.password1, self.password2 return self.name, self.password1, self.password2
\ No newline at end of file button1 = tkinter.Button(self.root, text='提交'bg='lightblue',
width=15,command=register)
button1.place(x=230, y=250)
button2 = tkinter.Button(self.root, text='取消'bg='lightblue',
width=15,command=reg_to_login)
button1.place(x=80, y=250)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment