Commit 1c102b85 by BellCodeEditor

save project

parent 0e5a4db0
Showing with 3 additions and 5 deletions
......@@ -3,9 +3,6 @@ from tkinter import *
from tkinter import messagebox
import json
alist = ["星期六下午打篮球", "星期天下午和小美一起看电影",
"12月18日给蒂法过生日", "12.24送妈妈圣诞礼物"]
class Note(): # 便签、笔记
def __init__(self):
self.root = tkinter.Tk()
......@@ -105,8 +102,9 @@ def register(): # 注册验证
def login():
global app # 登录验证
name, password = app_login.get_input()
pwd = users.get(name)
if pwd == password:
user_name= users.get(name)
if user_name !== None and user_name["password"]==password:
alist = users[name]["event"]
app_login.root.destroy()
app = Note()
app.show()
......
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