Answers for "How do you require 8-digit password in an input"

1

How do you require 8-digit password in an input

<input type="password" name="password" minlength="8" required>

<!-- Here minlength ensures that the number 
of inputs is greater than or equals to 8 -->
Posted by: Guest on March-04-2022

Code answers related to "How do you require 8-digit password in an input"

Browse Popular Code Answers by Language