View on GitHub

reading-notes

My learning journal for Code Fellows

Django Forms

What are django forms?

Django forms are a group of one or more fields/widgets on a webpage that all the user to submit information to the server.

Creating a Form

High Level

Devs need to first write the HTML for the form, validate and properly sanitize the entered data on the server, repost the form with the appropriate error messages to inform the user of any invalid field, handle the data when it is submitted successfully, and then finally respond to the user in some way that the form submission was a success

Steps