EN
HTML - password input
0
points
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>