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.
62 lines
3.3 KiB
62 lines
3.3 KiB
<?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">
|
|
<head>
|
|
<link href="resources/css/stylesButtons.css" rel="stylesheet" type="text/css"/>
|
|
<link href="resources/css/stylosNoemi.css" rel="stylesheet" type="text/css"/>
|
|
<link href="resources/css/theme.css" rel="stylesheet" type="text/css"/>
|
|
</head>
|
|
<body>
|
|
|
|
<ui:composition template="./template/templatePlantilla.xhtml">
|
|
|
|
<ui:define name="top">
|
|
top
|
|
</ui:define>
|
|
|
|
<ui:define name="left">
|
|
left
|
|
</ui:define>
|
|
|
|
<ui:define name="content">
|
|
<h:form>
|
|
<div class="form-card">
|
|
<div class="form-container">
|
|
<p:growl id="growl" showDetail="true" />
|
|
<h5 style="font-size: 16px; text-align: center;">¿Estas seguro de que quieres eliminar?</h5>
|
|
<div style="margin-bottom: 20xp"></div>
|
|
|
|
<h:panelGrid columns="2">
|
|
<div >
|
|
<span class="ui-input-icon-left">
|
|
<i class="pi pi-angle-right"></i><input id="pasillo" name="pasillo" value="#{ubiBean.ubicacion.pasillo}" type="text" class="ui-inputfield ui-inputtext" placeholder="Pasillo" required="true" requiredMessage="The Anaquel field is required."/>
|
|
</span>
|
|
</div>
|
|
<div >
|
|
<span class="ui-input-icon-left">
|
|
<i class="pi pi-angle-right"></i><input id="anaquel" name="anaquel" value="#{ubiBean.ubicacion.anaquel}" type="text" class="ui-inputfield ui-inputtext ui-widget ui-state-default ui-corner-all" placeholder="Anaquel" required="true" requiredMessage="The Anaquel field is required."/>
|
|
</span>
|
|
</div>
|
|
<div >
|
|
<span class="ui-input-icon-left">
|
|
<i class="pi pi-angle-right"></i><input id="nivel" name="nivel" value="#{ubiBean.ubicacion.nivel}" type="text" class="ui-inputfield ui-inputtext ui-widget ui-state-default ui-corner-all" placeholder="Nivel" required="true" requiredMessage="The Anaquel field is required."/>
|
|
</span>
|
|
</div>
|
|
</h:panelGrid>
|
|
|
|
<div class="button-container">
|
|
<p:commandButton action ="ubicacionLista.xhtml" value="Eliminar" actionListener="#{ubiBean.eliminarUbicacion()}" icon="pi pi-trash" styleClass="ui-button-raised ui-button-danger ui-button-flat"/>
|
|
<p:commandButton action ="ubicacionLista.xhtml" value="Cancelar" icon="pi pi-times-circle" styleClass="ui-button-raised ui-button-danger ui-button-flat" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</h:form>
|
|
</ui:define>
|
|
|
|
</ui:composition>
|
|
|
|
</body>
|
|
</html>
|
|
|