In the view below which option is not a valid reason for form.is_valid() to return False?
def my_view(request):
form = MyForm(request.POST or None)
if form.is_valid():
pass
Widget HTML failed to render
Required field is empty
ValidationError raised in clean()
Value type conversion failed
This question is part of this quiz :
Python | Django Forms