List your form fields (label, type, required), set the method and action, and the tool builds a complete HTML form with a submit button.
Add text, email, password, number, tel, url, date, textarea and select fields. Each field is generated with a matching <label> tied to the input id for accessibility.
GET appends form data to the URL and suits searches and idempotent requests. POST sends data in the request body and is used for logins, sign-ups and anything that changes data.
Every field is paired with a <label for> matching the input id, which lets screen readers announce the field and lets users click the label to focus the input.