Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version='1.0' encoding='UTF-8' ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:f="http://java.sun.com/jsf/core">
- <f:view>
- <head>
- <title>Introducir Datos de Usuario</title>
- </head>
- <body>
- <center>
- <h:form>
- <style type="text/css">
- body {background:orange}
- </style>
- <h3>Introducir sus Datos</h3>
- <table>
- <tr>
- <td>Nombre:</td>
- <td>
- <h:inputText value="#{usuario.nombre}"/>
- </td>
- </tr>
- <tr>
- <td>Apellido:</td>
- <td>
- <h:inputText value="#{usuario.apellido}"/>
- </td>
- </tr>
- <tr>
- <td>Edad:</td>
- <td>
- <h:inputText value="#{usuario.edad}"/>
- </td>
- </tr>
- </table>
- <label for="comentario">Seleccione sus Intereses</label>
- <p>
- <INPUT type="checkbox" name="intereses" value="#{usuario.intereses[0]}"> Musica</INPUT>
- <INPUT type="checkbox" name="intereses" value="#{usuario.intereses[1]}"> Deportes</INPUT>
- <INPUT type="checkbox" name="intereses" value="#{usuario.intereses[2]}"> Internet</INPUT>
- <INPUT type="checkbox" name="intereses" value="#{usuario.intereses[3]}"> Autos</INPUT>
- </p>
- <p>
- <h:commandButton value="Aceptar" action="saludo.xhtml"/>
- <h:commandButton value="Reiniciar" type="reset"/>
- </p>
- </h:form>
- </center>
- </body>
- </f:view>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement