(Admin) |
|||
Line 1: | Line 1: | ||
+ | ===Name=== | ||
+ | secure | ||
+ | ===Type=== | ||
+ | _input | ||
+ | ===Synopsis=== | ||
+ | How to render a hidden input field that is secure | ||
+ | ===Description=== | ||
+ | _input elements of type secure are similar to type hidden. The difference is that a secure field is not readable by a user and a form will fail if it gets altered using Browsers developer tools | ||
+ | ===Parameters=== | ||
+ | type="secure" | ||
+ | All other valid parameters for an input field are valid | ||
+ | ===Example=== | ||
+ | <syntaxhighlight lang="html"> | ||
+ | <_input type="secure" name="token" value="123231321" /> | ||
+ | </syntaxhighlight> | ||
+ | ===Note=== | ||
+ | ===Links=== |
Revision as of 14:45, 25 February 2022
Name
secure
Type
_input
Synopsis
How to render a hidden input field that is secure
Description
_input elements of type secure are similar to type hidden. The difference is that a secure field is not readable by a user and a form will fail if it gets altered using Browsers developer tools
Parameters
type="secure"
All other valid parameters for an input field are valid
Example
<_input type="secure" name="token" value="123231321" />