[Django]-Form not Posting in Django

5👍

I think that your problem is that you’re using

<input type="button" value="Sign Up!"/>

instead of

<input type="submit" value="Sign Up!"/>

the input submit will send all the form data to the server, the input button won’t.
You can learn a little bit more about forms here : http://www.w3schools.com/html/html_forms.asp

Leave a comment