Django - Security Best Practices
Given this Django view and template snippet, what happens if the CSRF token is missing in the POST request?
def submit_view(request):
if request.method == 'POST':
return HttpResponse('Success')
return render(request, 'form.html')
