Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4.      xmlns:h="http://java.sun.com/jsf/html"
  5.      xmlns:c="http://java.sun.com/jsp/jstl/core"
  6.      xmlns:f="http://java.sun.com/jsf/core">
  7.     <h:head>
  8.         <title>Saludo al Usuario</title>
  9.     </h:head>
  10.     <h:body>
  11.        
  12.         <!--Establece color al fondo-->
  13.         <style type="text/css">
  14.             body {background:orange}
  15.         </style>
  16.            
  17.         <center>
  18.             <h3>Bienvenido</h3>
  19.             <h:form>
  20.                 <h:outputText value="#{usuario.nombre} #{usuario.apellido}"/>
  21.             </h:form>    
  22.             <br/><br/>
  23.             <a href="index.xhtml">Volver</a>
  24.         </center>
  25.     </h:body>
  26. </html>