Author: mgrigorov
Date: Tue May 17 07:22:10 2011
New Revision: 1104033

URL: http://svn.apache.org/viewvc?rev=1104033&view=rev
Log:
WICKET-3709 SignInPanel shouldn't hard code input field size

Don't hardcode the username and password's value and size attributes. These 
should be provided by the user app.


Modified:
    
wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel.html

Modified: 
wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel.html
URL: 
http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel.html?rev=1104033&r1=1104032&r2=1104033&view=diff
==============================================================================
--- 
wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel.html
 (original)
+++ 
wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel.html
 Tue May 17 07:22:10 2011
@@ -24,13 +24,13 @@
                                <tr>
                                        <td align="right">Username:</td>
                                        <td>
-                                               <input wicket:id="username" 
type="text" value="[email protected]" size="30"/>
+                                               <input wicket:id="username" 
type="text" />
                                        </td>
                                </tr>
                                <tr>
                                        <td align="right">Password:</td>
                                        <td>
-                                               <input wicket:id="password" 
type="password" value="password" size="30"/>
+                                               <input wicket:id="password" 
type="password" />
                                        </td>
                                </tr>
                                <tr wicket:id="rememberMeRow">


Reply via email to