* Implementado esqueleto de menu principal.

* Filtro AuthorizationFilter para gestionar inicio de sesión.
* Interfaz para página de login básica.
* Todos los managed beans movidos a paquete managedbean
* Configuración básica de faces-config con navegación de paginas
outcome.
* Actualizado web.xml
* Utilización de librería primefaces para interfaz de usuario.
* Aplicado tema bootstrap para primefaces.
* Los iconos (glyph-icons) de primefaces no se cargan en la interfaz
(Pendiente de investigar).
* Actualización de projects archives para inclusión de clases nuevas en
JAR/WAR/EAR de forma correcta.
This commit is contained in:
mgarcianun
2019-11-25 23:08:25 +01:00
parent a7a7f99b3a
commit 846ff98002
42 changed files with 582 additions and 581 deletions

View File

@@ -1,24 +1,21 @@
<?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">
<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">
<ui:composition template="../header.xhtml">
<ui:composition template="../header.xhtml">
<ui:define name="content">
<h:form id="errorForm">
<div align="center">
<h1>ShowPaciente Page</h1>
<hr/>
<div>ShowPaciente:</div>
<div>
ShowPaciente content
</div>
<h:form id="errorForm">
<div align="center">
<h1>ShowPaciente Page</h1>
<hr />
<div>ShowPaciente:</div>
<div>ShowPaciente content</div>
</div>
<p align="center">
<h:button value="Volver al inicio" outcome="home?refresh=1" />
<h:button value="Volver al inicio" outcome="home" />
</p>
</h:form>
</h:form>
</ui:define>
</ui:composition>
</ui:composition>
</html>