Password Fields:
You know better that password is necessary for login and this is not so difficult to learn it. If you know the input text field then you can easily make your password field just you have to change type="password". One more thing you seen size and maxlength which is actually the size of the text field how much widen is it? and the max length that how much characters stored in it. If you want to store 5 character password then maxlength="5".
Password Fields Code:
Password Fields Example:
You know better that password is necessary for login and this is not so difficult to learn it. If you know the input text field then you can easily make your password field just you have to change type="password". One more thing you seen size and maxlength which is actually the size of the text field how much widen is it? and the max length that how much characters stored in it. If you want to store 5 character password then maxlength="5".
Password Fields Code:
<input type="password" size="5" maxlength="5" /><br />
<input type="password" size="15" maxlength="15" /><br />
<input type="password" size="25" maxlength="25" />
<input type="password" size="15" maxlength="15" /><br />
<input type="password" size="25" maxlength="25" />
Password Fields Example:
Comments
Post a Comment