Commit 95d95e59 by BellCodeEditor

auto save

parent 1c31f720
Showing with 26 additions and 0 deletions
import tkinter
from tkinter import messagebox
def login_to_reg()
app_login.root.destroy()
app_reg = My_register()
app_reg.show()
def reg_to_login():
app_reg.root.destroy()
global app_login
app_login = My_login()
app_login.show()
def My_register
name,passworld1,passworld2 = app_reg.get_input()
if name == ""or passworld1 ==""passworld2=="":
messagebox.showwarning("警告","请填写完整的注册资料")
def login():
pass
class My_login():
def _init_(self):
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