Line 2: | Line 2: | ||
password | password | ||
===Type=== | ===Type=== | ||
− | + | input | |
===Synopsis=== | ===Synopsis=== | ||
How to use the password field for input | How to use the password field for input | ||
Line 8: | Line 8: | ||
When using the password field, people cannot see what they are typing. | When using the password field, people cannot see what they are typing. | ||
===Parameters=== | ===Parameters=== | ||
− | + | input type="password" | |
===Example=== | ===Example=== | ||
<syntaxhighlight lang="html"> | <syntaxhighlight lang="html"> | ||
− | < | + | <input type="password" name="pass" placeholder="Type your password" required="required" /> |
</syntaxhighlight> | </syntaxhighlight> | ||
− | < | + | <input type="password" name="pass" placeholder="Type your password" required="required" /> |
===Note=== | ===Note=== | ||
All attributes for a password input field are supported (like in this case : name, placeholder and required). Obviously never use form action="GET" when using a password field, always use POST. | All attributes for a password input field are supported (like in this case : name, placeholder and required). Obviously never use form action="GET" when using a password field, always use POST. | ||
===Links=== | ===Links=== | ||
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/password | https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/password |
Revision as of 08:52, 3 January 2023
Name
password
Type
input
Synopsis
How to use the password field for input
Description
When using the password field, people cannot see what they are typing.
Parameters
input type="password"
Example
<input type="password" name="pass" placeholder="Type your password" required="required" />
Note
All attributes for a password input field are supported (like in this case : name, placeholder and required). Obviously never use form action="GET" when using a password field, always use POST.
Links
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/password