HTML forms in flask
Take a quick look at HTML forms recap to refresh your memory on HTML forms
Render a form in HTML response
Feel free to play around with the above snippet by building a form using other inputs like:
Select
Radio buttons
Text area
etc.
Handling form response
Notice the action
and action
attributes on the form element. We will now build a route that can handle the data submitted on the form.
Last updated
Was this helpful?