2
You need to pass it to the template!
return render(request,'signup.html',{'form': form })
And then in the template display it!
{{ form.as_p }}
Source:stackexchange.com
2
You need to pass it to the template!
return render(request,'signup.html',{'form': form })
And then in the template display it!
{{ form.as_p }}