Glossary

Hidden field defined.

A hidden field is an <input type="hidden">, a form input that submits its name and value along with the rest of the form but never renders on the page, used to pass data the visitor doesn't need to see or edit.

Definition

How a hidden field works

When a form is submitted, the browser sends every named input, visible or not. A hidden field rides along in that payload without appearing in the UI: configuration for the endpoint, an ID tying the submission to a record, context like which page the form was on. One caveat governs all of it: hidden means invisible, not secret. The value sits in your page source where anyone can read it, so a hidden field carries identifiers and settings, never credentials.

FormWire's integration is built on exactly this. A hidden access_key input tells the endpoint which account the submission belongs to, public by design, since delivery is locked to email addresses you've verified, so exposing it gives a stranger no way to redirect your mail. Reserved underscore-prefixed fields ride the same way: a hidden _redirect names the page to send the visitor to after a successful submit, and _cc adds extra verified recipients. Configuration travels inside the form itself, with no code around it.

Related questions

Want to see it working?

Read the docs
Ready in a minute

One hidden field connects your form.

Free tier forever. No credit card required.