Our First Django Form
We will create our first Django form.
We'll cover the following...
Introduction to forms
Forms are a way to collect data from our website visitors or our users. Basically, we want to collect that data, and we want to do something with it. Primarily, we grab data from the user and store that data in our database.
NOTE: Forms themselves aren’t Django specific. They are made in HTML and are found in most web applications. We assume that you already know how forms work in HTML. Therefore, this chapter will focus only on how forms work in Django. ...