set the expiry date 30 days after the date of sign-up.

Bug525-Hui
Hui Lan 2023-01-29 10:53:58 +08:00
parent fae0a032c5
commit 773c1b34d4
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import hashlib
import string
from datetime import datetime
from datetime import datetime, timedelta
from UseSqlite import InsertQuery, RecordQuery
path_prefix = '/var/www/wordfreq/wordfreq/'
@ -23,7 +23,7 @@ def verify_user(username, password):
def add_user(username, password):
start_date = datetime.now().strftime('%Y%m%d')
expiry_date = '20231230'
expiry_date = (datetime.now() + timedelta(days=30)).strftime('%Y%m%d') # will expire after 30 days
# 将用户名和密码一起加密,以免暴露不同用户的相同密码
password = md5(username + password)
rq = InsertQuery(path_prefix + 'static/wordfreqapp.db')