Which choice is the standard way to include a value in a form without making it visible to or editable by the user?
<input type="hidden" name="important" value="information">
<input type="text" hidden name="important" value="information"> <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. Source
<input type="text" hidden name="important" value="information">
<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.
<input type="invisible" name="important" value="information">
<input type="text" style="display: none;" name="important" value="information">