mirror of https://gitlab.com/bashrc2/epicyon
Fields for changing password
parent
a07d301583
commit
845740bb01
|
@ -4236,12 +4236,12 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
|
||||
# change password
|
||||
if fields.get('password'):
|
||||
if len(fields['password']) > 2:
|
||||
if fields.get('passwordconfirm'):
|
||||
if actorJson['password'] == \
|
||||
if fields['password'] == \
|
||||
fields['passwordconfirm']:
|
||||
if len(actorJson['password']) > 2:
|
||||
# set password
|
||||
pwd = actorJson['password']
|
||||
pwd = fields['password']
|
||||
storeBasicCredentials(baseDir,
|
||||
nickname,
|
||||
pwd)
|
||||
|
|
Loading…
Reference in New Issue