what is min attribute in password
<input type="password" name="password" min="5">
<input type="text" name="username" min="5">
<!-- The minlength attribute specifies the minimum number
of characters required in an input field.-->
what is min attribute in password
<input type="password" name="password" min="5">
<input type="text" name="username" min="5">
<!-- The minlength attribute specifies the minimum number
of characters required in an input field.-->
minmax length password
<label for="password">Password:</label>
<input id="password" type="password" pattern=".{5,10}" required title="5 to 10 characters">
Validate length with html
<--html forms min. charcter-->
<input pattern=".{3,}" required title="3 characters minimum">
<input pattern=".{5,10}" required title="5 to 10 characters">
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us