commit 70f2a1a81abc9064d4a493b67c099512818b07d4 parent 242bda38f4a3f3b82ff742a74c02983ddfe70137 Author: Dominik Wilkowski <Hi@Dominik-Wilkowski.com> Date: Fri, 19 Jul 2013 13:05:17 +1000 added labels for login input fields Diffstat:
| M | system/core/core_webinterface.js | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/system/core/core_webinterface.js b/system/core/core_webinterface.js @@ -91,8 +91,8 @@ yellow.webinterface = "<h1>"+this.getText("LoginText")+"</h1>"+ "<form method=\"post\" name=\"formlogin\">"+ "<input type=\"hidden\" name=\"action\" value=\"login\"/>"+ - "<p>"+this.getText("LoginEmail")+" <input name=\"email\" maxlength=\"64\" /></p>"+ - "<p>"+this.getText("LoginPassword")+" <input type=\"password\" name=\"password\" maxlength=\"64\" /></p>"+ + "<p><label for=\"email\">"+this.getText("LoginEmail")+"</label> <input name=\"email\" id=\"email\" maxlength=\"64\" /></p>"+ + "<p><label for=\"password\">"+this.getText("LoginPassword")+"</label> <input type=\"password\" name=\"password\" id=\"password\" maxlength=\"64\" /></p>"+ "<p><input class=\"yellow-btn\" type=\"submit\" value=\""+this.getText("LoginButton")+"\"/></p>"+ "</form>"; } else if(id == "yellow-paneedit") {