Author: vamsic007
Date: Tue Dec 5 06:28:10 2006
New Revision: 482672
URL: http://svn.apache.org/viewvc?view=rev&rev=482672
Log:
GERONIMO-2625 Geronimo Console: login page prevents using username, password longer than 25
characters for login
o Removed the maxlength attribute in the username and password form input tags
Modified:
geronimo/server/branches/1.2/applications/console/geronimo-console-framework/src/main/webapp/login.jsp
Modified: geronimo/server/branches/1.2/applications/console/geronimo-console-framework/src/main/webapp/login.jsp
URL: http://svn.apache.org/viewvc/geronimo/server/branches/1.2/applications/console/geronimo-console-framework/src/main/webapp/login.jsp?view=diff&rev=482672&r1=482671&r2=482672
==============================================================================
--- geronimo/server/branches/1.2/applications/console/geronimo-console-framework/src/main/webapp/login.jsp
(original)
+++ geronimo/server/branches/1.2/applications/console/geronimo-console-framework/src/main/webapp/login.jsp
Tue Dec 5 06:28:10 2006
@@ -14,6 +14,9 @@
See the License for the specific language governing permissions and
limitations under the License.
--%>
+
+<%-- $Rev$ $Date$ --%>
+
<html>
<head>
<title>Geronimo Console Login</title>
@@ -74,14 +77,14 @@
<td align="right" class="MediumBackground"><strong>Username</strong></td>
<td class="MediumBackground"><strong>:</strong></td>
<td width="1" class="MediumBackground"> </td>
- <td class="MediumBackground"><input name="j_username" type="text"
class="InputField" value="" size="20px" maxlength="25"/></td>
+ <td class="MediumBackground"><input name="j_username" type="text"
class="InputField" value="" size="20px"/></td>
<td width="17" class="MediumBackground"> </td>
</tr>
<tr>
<td align="right" class="MediumBackground"><strong>Password</strong></td>
<td class="MediumBackground"><strong>:</strong></td>
<td width="1" class="MediumBackground"> </td>
- <td class="MediumBackground"><input name="j_password" type="password"
class="InputField" value="" size="20px" maxlength="25"/></td>
+ <td class="MediumBackground"><input name="j_password" type="password"
class="InputField" value="" size="20px"/></td>
<td class="MediumBackground"> </td>
</tr>
<tr>
|