How can I set the CSS for an input field of type text
in html to appear as a password field, i.e. the text in the input seems to get replaced with a symbol such as the asterisk ("*") or a dot ("•")?
I have this constraint:
<input name="passwordish" type="text" id="inputPassword" placeholder="Password" >
EDIT: Sorry if this was not clear, but for some snowflakish reasons I can't change the field type!