HTMLFormulare
HTMLFormulare are the mechanisms in the HTML standard for collecting user input and transmitting it to a server or other endpoint. In English, these are called HTML forms. The term may appear in German-language documentation as a direct rendering of "HTML forms".
The core is the form element, which groups controls such as input, select, textarea, and button. Each
The form element exposes attributes such as action, method, and enctype. The action specifies the destination
Validation can be performed client-side via constraint validation using attributes like required, type, pattern, min, and
Security and data handling considerations include using HTTPS, server-side validation and sanitization, and CSRF protection. JavaScript