1👍
You haven’t called is_valid
anywhere. It should be:
if request.method == 'POST':
form = UserInformationForm(request.POST)
if form.is_valid():
form.save()
return HttpResponseRedirect('/register/success/')
Source:stackexchange.com