[Fixed]-Required field validator does not work in Django on azure

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/')

Leave a comment