33 lines
976 B
HTML
33 lines
976 B
HTML
<?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:ui="http://java.sun.com/jsf/facelets"
|
|
xmlns:f="http://java.sun.com/jsf/core"
|
|
xmlns:h="http://java.sun.com/jsf/html">
|
|
|
|
<h:head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<title>myHealth page header</title>
|
|
<h:outputStylesheet library="css" name="estilos.css" />
|
|
</h:head>
|
|
|
|
<h:body>
|
|
<div id="layout">
|
|
<div id="top" class="top">
|
|
<h1 class="Titulo">myHealth page header</h1>
|
|
</div>
|
|
<hr />
|
|
<div id="menucontainer" class="estilomenu">
|
|
<h:form>
|
|
<p>Welcome #{login.userName}, <h:commandLink action="#{login.logout}" value="Logout"></h:commandLink></p>
|
|
</h:form>
|
|
</div>
|
|
<div id="content">
|
|
<ui:insert name="content">Content</ui:insert>
|
|
</div>
|
|
<hr />
|
|
</div>
|
|
</h:body>
|
|
</html>
|