Author: mgrigorov
Date: Tue May 17 07:20:27 2011
New Revision: 1104032
URL: http://svn.apache.org/viewvc?rev=1104032&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/trunk/wicket-auth-roles/src/main/java/org/apache/wicket/authroles/authentication/panel/SignInPanel.html
Modified:
wicket/trunk/wicket-auth-roles/src/main/java/org/apache/wicket/authroles/authentication/panel/SignInPanel.html
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket-auth-roles/src/main/java/org/apache/wicket/authroles/authentication/panel/SignInPanel.html?rev=1104032&r1=1104031&r2=1104032&view=diff
==============================================================================
---
wicket/trunk/wicket-auth-roles/src/main/java/org/apache/wicket/authroles/authentication/panel/SignInPanel.html
(original)
+++
wicket/trunk/wicket-auth-roles/src/main/java/org/apache/wicket/authroles/authentication/panel/SignInPanel.html
Tue May 17 07:20:27 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">