Asked By
jeff mathie
30 points
N/A
Posted on - 10/28/2012
Hello experts,
How to turn dots to words passwords? When logging in to my webpage administrator how can I convert dots to words passwords? I just want to see if I key in the right password for it is saying that unable to log in please check your password. I hope you can give me some codes or illustration that will help me a lot.
Thank you.
How to turn dots to words passwords?
Hi there Jeff,
I studied C++ and visual programming i can give you the codes that make the dots into text but in your case it was a webpage now already so i come up with one solution.
First go to your logging page(where you put your username and password). But do not enter yet.
Secondly on the password tab right click and click Inspect Element. You can see at the bottom of your page a code like this < input class = "regular-text" type = "password" name = "pwd" > something like this code.
Then all you have to do is to change the type = password into type = text.
Then there you go when typing your password it now change into text instead of dots.
I hope this helps.