Author: ips
Date: 2008-12-23 17:28:00 -0500 (Tue, 23 Dec 2008)
New Revision: 84
Modified:
trunk/core/src/main/webapp/login.xhtml
Log:
make username and password inputs the same width (note: works on FF but not IE)
Modified: trunk/core/src/main/webapp/login.xhtml
===================================================================
--- trunk/core/src/main/webapp/login.xhtml 2008-12-23 21:39:14 UTC (rev 83)
+++ trunk/core/src/main/webapp/login.xhtml 2008-12-23 22:28:00 UTC (rev 84)
@@ -56,9 +56,9 @@
<h2>Please login to proceed.</h2>
<p/>
<h:outputLabel for="name"
value="#{messages['security.username']}"/><br/>
- <h:inputText id="name"
value="#{identity.username}"/></div>
+ <h:inputText id="name"
value="#{identity.username}" size="20"/></div>
<div style="padding-top: 10px;"><h:outputLabel
for="password"
value="#{messages['security.password']}"/><br/>
- <h:inputSecret id="password"
value="#{identity.password}"/></div>
+ <h:inputSecret id="password"
value="#{identity.password}" size="20"/></div>
<div style="padding-top: 10px;"><h:commandButton
value="#{messages['security.login']}" id="submit"
action="#{identity.login()}" styleClass="buttonmed"/>
</div>
Show replies by date