Best way is to change your password type to text and replace the characters with asterisks or dots whatever you like.
change <input type="password" /> to <input type="text" id="password" style="-webkit-text-security: disc;"/>
There are other options as well:
input { -webkit-text-security: none; }
input { -webkit-text-security: circle; }
input { -webkit-text-security: square; }
input { -webkit-text-security: disc; /* Default */ }