Form Action
Introducing and using HTML forms rather than HTML input.
We'll cover the following...
Improving our application
We’ll build upon what we have been working on in the last few chapters and add the features of an HTML form element to our app.py
file.
To convert our little application into a more conventional HTML form, we have to modify a few lines of code to get the desired results. While the UI hasn’t visibly changed, the behavior reflects the use of the form element.
Using form
instead of div
Most of the ...