alessandro
alessandro

Reputation: 1721

How to show ** when typing password?

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

Answers (1)

BalusC
BalusC

Reputation: 1108642

You should use <input type="password"> instead of <input type="text">.

See also:

Upvotes: 5

Related Questions