diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index cacad51..1228cc7 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -377,6 +377,8 @@ def complete_register(): is_validated = validate.validate_complete_signup_data(data.get('username'), data.get('password'), data.get('country')) if is_validated is not True: return dict(message='Invalid data', data=None, error=is_validated), 400 + + print(data) username= data.get('username') password= data.get('password') country= data.get('country')