- HTML forms use
<form>
tags to encapsulate user input elements.
- Inside
<form>
, <input>
tags are used to collect specific data types (e.g., text
, email
, password
).
- Each
<input>
element includes attributes such as type
, name
, and placeholder
.
- A submit button, typically
<input type="submit">
, triggers the form submission to the specified action
URL.
We'll integrate forms with Flask to handle form submissions and process data on the backend.