Skip to content
Snippets Groups Projects
index.xhtml 784 B
Newer Older
<ui:composition template="/WEB-INF/template/layout.xhtml"
                xmlns="http://www.w3.org/1999/xhtml"
                xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://xmlns.jcp.org/jsf/html">

    <ui:define name="title">Encryption Bean - Página inicial</ui:define>

    <ui:define name="content">
        <h1>Bem-vindo, use o menu superior para navegar.</h1>

        <h2><h:outputText value="#{anotherBean.text}"/></h2>

        <h:form>
            <ul>
                <li>
                    <h:commandLink styleClass="btn btn-primary" action="#{someBean.form}" value="Hash"/>
                </li>
            </ul>
        </h:form>

        <!--<h:commandLink action="#{myHashBean.form()}" value=""></h:commandLink>-->
    </ui:define>

</ui:composition>