<?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>
<p>
<INPUT type="radio" name="sexo" value="Hombre"> Hombre</INPUT>
<INPUT type="radio" name="sexo" value="Mujer"> Mujer</INPUT>
</p>
<p>
<td>Elija su Pais</td>
<SELECT name="Elegir Componente">
<OPTION>Argentina</OPTION>
<OPTION>Brasil</OPTION>
<OPTION>Chile</OPTION>
<OPTION>Colombia</OPTION>
<OPTION selected ="componente5">Ecuador</OPTION>
<OPTION>Mexico</OPTION>
<OPTION>Paraguay</OPTION>
<OPTION>Peru</OPTION>
<OPTION>Venezuela</OPTION>
</SELECT>
</p>
<label for="comentario">Seleccione sus Intereses</label>
<p>
<INPUT type="checkbox" name="intereses" value="Musica"> Musica</INPUT>
<INPUT type="checkbox" name="intereses" value="Deportes"> Deportes</INPUT>
<INPUT type="checkbox" name="intereses" value="Internet"> Internet</INPUT>
<INPUT type="checkbox" name="intereses" value="Autos"> Autos</INPUT>
</p>
<label for="comentario">Escribir un Comentario</label>
<p>
<TEXTAREA name="eltexto" rows="5" cols="40"></TEXTAREA>
</p>
<p>
<h:commandButton value="Aceptar" action="saludo.xhtml"/>
<h:commandButton value="Reiniciar" type="reset"/>
</p>
</h:form>
</center>
</body>
</f:view>
</html>