Reveal the Hidden Password
Right-click the password fieldand then choose “Inspect Element.”
This will open the document inspector window and all you have to do is replace the word “password” with “text”
----------------------------------------------------------------------------------------------------------------
FROM
<input type="password" name="Passwd" id="Passwd">
----------------------------------------------------------------------------------------------------------------
TO
<input type="text" name="Passwd" id="Passwd"> ----------------------------------------------------------------------------------------------------------------
What we have done is changed the type of the <input> field from “password” to “text” and hence the password is revealed as the text input fields are never masked.
No comments:
Post a Comment