Author: manaRH
Date: 2009-07-05 07:18:59 -0400 (Sun, 05 Jul 2009)
New Revision: 11242
Modified:
branches/enterprise/JBPAPP_4_3_FP01/examples/seambay/view/register.xhtml
Log:
JBPAPP-1928 - fixed back port
Modified: branches/enterprise/JBPAPP_4_3_FP01/examples/seambay/view/register.xhtml
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/examples/seambay/view/register.xhtml 2009-07-05
11:13:49 UTC (rev 11241)
+++ branches/enterprise/JBPAPP_4_3_FP01/examples/seambay/view/register.xhtml 2009-07-05
11:18:59 UTC (rev 11242)
@@ -46,25 +46,25 @@
<s:validateAll>
<p>
<b>seamBay User ID</b><br/>
- <h:inputText id="username"
value="#{newuser.username}"/>
+ <h:inputText id="username" value="#{newuser.username}"
required="true"/>
<div class="validationError"><h:message
id="usernameMessage" for="username"/></div>
</p>
<p>
<b>Password</b><br/>
- <h:inputSecret id="password"
value="#{newuser.password}"/>
+ <h:inputSecret id="password"
value="#{newuser.password}" required="true"/>
<div class="validationError"><h:message
id="passwordMessage" for="password"/></div>
</p>
<p>
<b>Confirm Password</b><br/>
- <h:inputSecret id="confirm"
value="#{registerAction.confirm}"/>
+ <h:inputSecret id="confirm"
value="#{registerAction.confirm}" required="true"/>
<div class="validationError"><h:message
id="confirmMessage" for="confirm"/></div>
</p>
<p>
<b>Location</b><br/>
- <h:inputText id="location" class="location"
value="#{newuser.account.location}"/>
+ <h:inputText id="location" class="location"
value="#{newuser.account.location}" required="true"/>
<div class="validationError"><h:message
id="locationMessage" for="location"/></div>
</p>