nodisponible.xhtml

nodisponible.xhtml

Crear la página no disponible

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html>
<ui:composition template="/layout/template.xhtml" 
                xmlns="http://www.w3.org/1999/xhtml"
                xmlns:h="http://java.sun.com/jsf/html"
                xmlns:f="http://java.sun.com/jsf/core"
                xmlns:b="http://bootsfaces.net/ui"
                xmlns:ui="http://java.sun.com/jsf/facelets"
                xmlns:p="http://primefaces.org/ui"
                xmlns:a="http://xmlns.jcp.org/jsf/composite/avbravo"> 
    <ui:define name="content">
        <!--<h:outputStylesheet library="bsf" name="css/thumbnails.css"/>-->

        <style>
            .thumbnail { max-width: 100%; }
            img.thumbnail:hover, img.thumbnail:focus {
                border: 1px solid;
                border-color: #428BCA;
            }
        </style>
        <h1></h1>
        <hr/>
        <h:form id="formnodisponible" >

            <b:jumbotron>
                <h1><p:outputLabel value="#{app['title.nodisponible']}"/></h1>
                <p><p:outputLabel value="#{app['label.paginanodisponible']}"/></p>
                <p><p:outputLabel value="#{app['label.debeloguearse']}"/></p>
                <p></p>
                <p> <b:commandButton look="danger" action="#{loginController.irLogin}"
                value="#{app['button.login']}" ajax="false"/></p>
            </b:jumbotron>

        </h:form>

        <br/><br/><br/>
    </ui:define>
</ui:composition>

Last updated

Was this helpful?