Introduction to Forms and Requests
In this lesson, we will learn about the two methods of handling forms in Flask.
Handling forms in Flask
The Flask package itself does not provide us a way to handle forms. There are two ways that developers deal with this:
- Via the requestobject
- Via the Flask-WTFextension
In this lesson, we will briefly discuss the first option.
Using the request object
Here, we will take the example of a simple login form. We ...
 Ask