diff --git a/account/account.py b/account/account.py index 8446b36..914d392 100644 --- a/account/account.py +++ b/account/account.py @@ -166,6 +166,11 @@ def register(): passwordhash = fetch_hash_from_database(username) + print(username) + print(password) + print(verifyhash) + print(passwordhash) + if verifyhash == passwordhash: # Attempt to change the password if change_email_password(username, password):