Languages
[Edit]
EN

HTML - password input

0 points
Created by:
Elias999
759

In this article, we would like to show you how to create and use the password input element in HTML.

Quick solution:

// ONLINE-RUNNER:browser;

<label>
  <span>Password:</span>
  <input type="password" name="input-name" />
</label>

 

Practical example

In this example, we create password input using the input element's type="password" attribute. Additionally, we specify that the password in the form is required to be filled and we set it's minimum length using minlength.

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<body>
  <form>
    <label>
      <span>Password:</span>
      <input type="password" name="input-name" minlength="5" required />
    </label>
  </form>
</body>
</html>

References

Alternative titles

  1. HTML - input type password
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

HTML - input element types

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join