Module: check_mk
Branch: master
Commit: 22cb5c5e18bef9563d1700f612219be9882556a7
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=22cb5c5e18bef9…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Fri Dec 2 08:44:02 2016 +0100
Login: Fixed wrong rendering of password field
---
web/htdocs/login.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/htdocs/login.py b/web/htdocs/login.py
index 5821b6e..70e86bd 100644
--- a/web/htdocs/login.py
+++ b/web/htdocs/login.py
@@ -429,7 +429,7 @@ def normal_login_page(called_directly = True):
html.write('<label id="label_user" class="legend"
for="_username">%s:</label><br />\n' %
_('Username'))
html.text_input("_username", id_="input_user")
html.write('<label id="label_pass" class="legend"
for="_password">%s:</label><br />\n' %
_('Password'))
- html.password_input("_password", id="input_pass", size=None)
+ html.password_input("_password", id_="input_pass", size=None)
if html.has_user_errors():
html.write('<div id="login_error">')