| <%@ taglib
uri="http://java.sun.com/jsf/html" prefix="h" %>
| <%@ taglib
uri="http://java.sun.com/jsf/core" prefix="f" %>
| <%@ taglib
uri="http://jboss.com/products/seam/taglib"
prefix="s" %>
| <html>
| <head>
| <title>Register New User</title>
| </head>
| <body>
| <f:view>
| <h:form>
| <table border="0">
| <tr>
| <td>Username</td>
| <td><h:inputText
value="#{user.userName}"/></td>
| </tr>
| <tr>
| <td>Password</td>
| <td><h:inputSecret
value="#{user.password}"/></td>
| </tr>
| </table>
| <h:messages/>
| <h:commandButton type="submit" value="Register"
action="#{userController.register}"/>
| </h:form>
| </f:view>
| </body>
| </html>
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3984393#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...