From 68e011ca9253ed1e8950577c9bae99ef0ee0bb03 2011-08-27 19:37:44
From: Satrajit Ghosh <satrajit.ghosh@gmail.com>
Date: 2011-08-27 19:37:44
Subject: [PATCH] fix: changed keyword input field to type password
---

diff --git a/IPython/frontend/html/notebook/handlers.py b/IPython/frontend/html/notebook/handlers.py
index 654f760..fcde68d 100644
--- a/IPython/frontend/html/notebook/handlers.py
+++ b/IPython/frontend/html/notebook/handlers.py
@@ -57,7 +57,7 @@ class LoginHandler(BaseHandler):
         user_id = self.get_secure_cookie("user")
         self.write('<html><body><form action="/login" method="post">'
                    'Name: <input type="text" name="name" value=%s>'
-                   'Keyword: <input type="text" name="keyword">'
+                   'Keyword: <input type="password" name="keyword">'
                    '<input type="submit" value="Sign in">'
                    '</form></body></html>'%user_id)