RichGuk / deluge-in-chrome

Provides quick overview of torrent information in Chrome for the torrent client Deluge.
https://chrome.google.com/extensions/detail/pbenannnhhgfhhijhlpgfbjagebjeeel
MIT License
16 stars 16 forks source link

Password shown in plain text #1

Closed mperry8889 closed 14 years ago

mperry8889 commented 14 years ago

The password is shown in clear text, instead of using the "password" input type. Here's a patch:

--- a/options.html      Sun Jan 03 14:43:22 2010 +0000
+++ b/options.html      Thu Jan 14 18:06:13 2010 -0500
@@ -47,7 +47,7 @@

           <p>
             <label>Password:</label>
-            <input type="text" name="password" id="password" />
+            <input type="password" name="password" id="password" />
           </p>

           <p>
@@ -122,4 +122,4 @@
       });
     </script>
   </body>
-</html>
\ No newline at end of file
+</html>
RichGuk commented 14 years ago

Quite happy to make this commit, I only left this open so you could see the password stored in the extension for deluge.

I'm away from the computer for the weekend but I'll apply it when I'm back.

RichGuk commented 14 years ago

This has now been applied.