SEC-1800: Set input size to 30 for OpenID login.

This commit is contained in:
Luke Taylor 2011-09-25 21:13:37 +01:00
parent 44364d0101
commit 869c6a7c18
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ public class DefaultLoginPageGeneratingFilter extends GenericFilterBean {
sb.append("<h3>Login with OpenID Identity</h3>");
sb.append("<form name='oidf' action='").append(request.getContextPath()).append(openIDauthenticationUrl).append("' method='POST'>\n");
sb.append(" <table>\n");
sb.append(" <tr><td>Identity:</td><td><input type='text' name='");
sb.append(" <tr><td>Identity:</td><td><input type='text' size='30' name='");
sb.append(openIDusernameParameter).append("'/></td></tr>\n");
if (openIDrememberMeParameter != null) {