Skip to content

Commit

Permalink
Change input type of password field to "password"
Browse files Browse the repository at this point in the history
  • Loading branch information
k-tamura committed Feb 23, 2017
1 parent 28334bc commit 17d38d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ protected void service(HttpServletRequest req, HttpServletResponse res) throws S
bodyHtml.append("<input type=\"text\" name=\"name\" size=\"30\" maxlength=\"30\">");
bodyHtml.append("&nbsp;&nbsp;");
bodyHtml.append(MessageUtils.getMsg("label.password", locale) + ": ");
bodyHtml.append("<input type=\"text\" name=\"password\" size=\"30\" maxlength=\"30\">");
bodyHtml.append("<input type=\"password\" name=\"password\" size=\"30\" maxlength=\"30\">");
bodyHtml.append("<br><br>");
bodyHtml.append("<input type=\"submit\" value=\"" + MessageUtils.getMsg("label.submit", locale) + "\">");
bodyHtml.append("<br><br>");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ protected void service(HttpServletRequest req, HttpServletResponse res) throws S
bodyHtml.append("<input type=\"text\" name=\"name\" size=\"20\" maxlength=\"20\">");
bodyHtml.append("&nbsp;&nbsp;");
bodyHtml.append(MessageUtils.getMsg("label.password", locale) + ": ");
bodyHtml.append("<input type=\"text\" name=\"password\" size=\"20\" maxlength=\"20\">");
bodyHtml.append("<input type=\"password\" name=\"password\" size=\"20\" maxlength=\"20\">");
bodyHtml.append("<br><br>");
bodyHtml.append("<input type=\"submit\" value=\"" + MessageUtils.getMsg("label.submit", locale) + "\">");
bodyHtml.append("<br><br>");
Expand Down

0 comments on commit 17d38d6

Please sign in to comment.