Name
hidden
Type
input
Synopsis
How to render a hidden input field
Description
input elements of type hidden let web developers include data that cannot be seen or modified by users when a form is submitted. For example, the ID of the content that is currently being ordered or edited, or a unique security token. Hidden inputs are completely invisible in the rendered page, and there is no way to make it visible in the page's content.
Parameters
type="hidden"
All other valid parameters for an input field are valid
Example
<input type="hidden" name="token" value="123231321" />
Note
While the value isn't displayed to the user in the page's content, it is visible—and can be edited—using any browser's developer tools or "View Source" functionality. If you want to create a secure field, then use input type="secure". When using action="get" a secure field will not be returned in the url, when using action="get" a hidden field will be returned in the url.
Links
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/hidden