Commit d609b5a5 by BellCodeEditor

save project

parent c54eb04e
Showing with 5 additions and 0 deletions
...@@ -25,6 +25,11 @@ def register(): # 注册验证 ...@@ -25,6 +25,11 @@ def register(): # 注册验证
messagebox.showwarning("错误") messagebox.showwarning("错误")
elif elif
users[name]=password1 users[name]=password1
content=json.dump(users)
with open("user.txt","w",encoding="uft-8") as file:
file.write(content)
messagebox.showinfo("成功")
reg_to_login()
def login(): # 登录验证 def login(): # 登录验证
pass pass
......
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