We may need to add a show password checkbox when users enter password. When users click "Show password" checkbox, the password will be switched from hidden to plain text, so users can check it for typos.
We can design a check box and use onchange event handler to switch input type between password and text.
onchange="document.getElementById('password').type = this.checked ? 'text' : 'password'"
More about this video:
http://jiansenlu.blogspot.ca/2013/09/...