You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.2 KiB
51 lines
2.2 KiB
7 months ago
|
<?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://xmlns.jcp.org/jsf/facelets"
|
||
|
xmlns:h="http://xmlns.jcp.org/jsf/html"
|
||
|
xmlns:p="http://primefaces.org/ui">
|
||
|
|
||
|
<body>
|
||
|
<center>
|
||
|
<ui:composition template="./template/Principal.xhtml">
|
||
|
|
||
|
<ui:define name="top">
|
||
|
SISTEMA DE INVENTARIO
|
||
|
</ui:define>
|
||
|
<ui:define name="left">
|
||
|
<div class="card">
|
||
|
<h:form>
|
||
|
<p:growl id="messages"/>
|
||
|
|
||
|
<p:menubar>
|
||
|
|
||
|
<p:menuitem value="Departamento" icon="pi pi-fw pi-building " action="Departamento.xhtml"/>
|
||
|
<p:menuitem value="Marca" icon="pi pi-fw pi-tag" action="Marca.xhtml"/>
|
||
|
<p:menuitem value="Producto" icon="pi pi-fw pi-shopping-bag" action="Producto.xhtml"/>
|
||
|
<p:menuitem value="Proveedor" icon="pi pi-fw pi-truck" action="Provedor.xhtml"/>
|
||
|
<!-- <p:menuitem value="Registro" icon="pi pi-fw pi-book " disabled="true" action="Registro.xhtml"/>-->
|
||
|
<p:menuitem value="Tipo" icon="pi pi-fw pi-table" action="Tipo.xhtml"/>
|
||
|
<p:menuitem value="Usuario" icon="pi pi-fw pi-user" action="Usuario.xhtml"/>
|
||
|
<!-- <p:menuitem value="Inicio" icon="pi pi-fw pi-home" action="Menu.xhtml"/>-->
|
||
|
<p:divider layout="vertical"/>
|
||
|
</p:menubar>
|
||
|
</h:form>
|
||
|
</div>
|
||
|
|
||
|
</ui:define>
|
||
|
|
||
|
<ui:define name="right">
|
||
|
|
||
|
</ui:define>
|
||
|
|
||
|
<ui:define name="content">
|
||
|
|
||
|
</ui:define>
|
||
|
<ui:define name="bottom">
|
||
|
|
||
|
</ui:define>
|
||
|
</ui:composition>
|
||
|
</center>
|
||
|
</body>
|
||
|
</html>
|