Add debug for email reset
This commit is contained in:
		@@ -105,6 +105,7 @@ def _reset():
 | 
			
		||||
                    user = _user
 | 
			
		||||
                    break
 | 
			
		||||
            if not user: return jsonify({'error': 'The user account does not exist.'}), 400
 | 
			
		||||
            print(user.get_email(),request.form.get('email'),user.get_email() == request.form.get('email'))
 | 
			
		||||
            if not user.get_email() == request.form.get('email'): return jsonify({'error': 'The email address does not match the user account.'}), 400
 | 
			
		||||
            return user.reset_password()
 | 
			
		||||
        return send_errors_to_client(form=form)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user