117 views
Password hide in HTML
To hide a password input field in HTML, you can use the type="password"
attribute on the <input>
element. This will display the input field as a password field, obscuring the entered text.
Here’s an example:
<input type="password" placeholder="Enter your password">
In the above code, the type="password"
attribute is added to the <input>
element. The placeholder
attribute is optional and can be used to provide a hint or description for the password field.
When the user enters text into the password field, it will be masked or hidden to provide privacy and security.