[jboss-cvs] jboss-seam/examples/seamspace/view ...

Shane Bryzak Shane_Bryzak at symantec.com
Mon Oct 30 23:55:00 EST 2006


  User: sbryzak2
  Date: 06/10/30 23:55:00

  Modified:    examples/seamspace/view  home.xhtml
  Log:
  login form
  
  Revision  Changes    Path
  1.4       +31 -0     jboss-seam/examples/seamspace/view/home.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: home.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seamspace/view/home.xhtml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- home.xhtml	31 Oct 2006 03:45:24 -0000	1.3
  +++ home.xhtml	31 Oct 2006 04:55:00 -0000	1.4
  @@ -15,6 +15,37 @@
   
         <div id="contentSide">
           <div class="advertising"></div>
  +        
  +        <h:form>
  +          <div class="memberLogin">
  +            <div class="loginHeader">Member Login</div>
  +            
  +            <h:messages globalOnly="true"/>
  +            
  +            <div class="loginRow">
  +              <h:outputLabel for="name" value="Member name" styleClass="loginLabel"/>
  +              <h:inputText id="name" value="#{member.username}"/>
  +            </div>
  +            
  +            <div class="validationMsg">
  +              <h:message for="name"/>
  +            </div>
  +            
  +            <div class="loginRow">
  +              <h:outputLabel for="password" value="Password" styleClass="loginLabel"/>
  +              <h:inputSecret id="password" value="#{member.password}"/>
  +            </div>
  +            
  +            <div class="validationMsg">
  +              <h:message for="password"/>
  +            </div>          
  +            
  +            <h:commandButton value="LOGIN" action="#{loginAction.login}" styleClass="loginButton"/>
  +
  +            <br class="clear"/>
  +          
  +          </div>
  +        </h:form>
         </div>
        
       </ui:define>
  
  
  



More information about the jboss-cvs-commits mailing list