You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2011/01/20 10:41:24 UTC

svn commit: r1061181 - /wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/authentication1/SignIn.html

Author: mgrigorov
Date: Thu Jan 20 09:41:23 2011
New Revision: 1061181

URL: http://svn.apache.org/viewvc?rev=1061181&view=rev
Log:
Remove strange 'hidden' attribute of the password field.
It was making HTML5 browsers hiding the field.

Modified:
    wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/authentication1/SignIn.html

Modified: wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/authentication1/SignIn.html
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/authentication1/SignIn.html?rev=1061181&r1=1061180&r2=1061181&view=diff
==============================================================================
--- wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/authentication1/SignIn.html (original)
+++ wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/authentication1/SignIn.html Thu Jan 20 09:41:23 2011
@@ -22,7 +22,7 @@
 			<tr>
 			  <td align = "right">Password:</td>
 			  <td>
-			    <input wicket:id = "password" type = "password" value = "password" hidden = "1" size="30"/>
+			    <input wicket:id = "password" type = "password" value = "password" size="30"/>
 			  </td>
 			</tr>
 			<tr>