forms general

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.

 

cat forms
https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django


The purpose of a form is to do the usual CRUD create, read, update and delete functions of the web page model. You have probably used countless web page forms to provide information to web page applications. Forms have text fields, checkboxes, radio buttons and sliders to collect information from users. Typically data collected iin this manner is used to populate databases. Django supportis all commonly used Databases.

Most forms are bracketed by the “form” html tag element. When the “submit” button is pushed an “action” will take place to collect the user data to do apost or get operation.

There are 22 valid HTML input types according to the current HTML spec. If the type isn’t mentioned it’s assumed to be text. :

https://html.spec.whatwg.org/