Everything seems to be working fine, but if the form doesn't validate, instead of getting HTML validation errors, I get ValueError ar /register/: The user.register didn't return an HTTPResponse. It returned none instead.
My code:
if request.method == 'POST':
form = UserCreationForm(request.POST)
if form.is_valid():
form.save()
messages.success(request, 'Acount created!')
else:
form = UserCreationForm():
return render(request, 'users/register.html', {"form":form})
usually response are returned on each api call
like
try to add return statement with any of Response from django based on what you try to return
you need to add similar to this on if block
refer : https://simpleisbetterthancomplex.com/tutorial/2016/07/27/how-to-return-json-encoded-response.html#:~:text=Since%20version%201.7%2C%20Django%20counts,before%20returning%20the%20response%20object.