登陆页面

来源:互联网 发布:魔影工厂mac 编辑:程序博客网 时间:2024/04/29 05:20
<h:form id="login">     <fieldset>  <div>       <h:outputLabel id="UsernameLabel" for="username">Login Name</h:outputLabel>       <h:inputText id="username" value="#{identity.username}" style="width: 175px;"/>       <div class="errors"><h:message id="UsernameMessage" for="username"  style= "height:28px"/></div>  </div>  <div>       <h:outputLabel id="PasswordLabel" for="password">Password</h:outputLabel>               <h:inputSecret id="password" value="#{identity.password}" style="width: 175px;"/>  </div>  <div class="errors"><h:messages id="messages" globalOnly="true"  errorStyle= "width:193px;height:28px;"/></div>  <div>       <h:outputLabel for="rememberMe" value="Remember me"/>               <h:selectBooleanCheckbox id="rememberMe" value="#{rememberMe.enabled}"/>          </div>  <div class="buttonBox"><h:commandButton id="login" action="#{identity.login}" value="Account Login"/></div>  <div class="notes"><s:link id="register" view="/register.xhtml" value="Register New User"/></div>               </fieldset></h:form>

0 0
原创粉丝点击