Reputation: 1721
I create a Jsp page for log in - user name + password. However, when I am typing password it is showing on text box. Can anybody help me, how can I do this, when I type password it will show ** .Thanks in advance.
Upvotes: 1
Views: 284
Reputation: 1108642
You should use <input type="password">
instead of <input type="text">
.
Upvotes: 5