Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!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:h="http://java.sun.com/jsf/html"
- xmlns:p="http://primefaces.org/ui"
- xmlns:ui="http://java.sun.com/jsf/facelets">
- <h:head>
- </h:head>
- <h:body>
- <ui:composition template="template.xhtml">
- <ui:define name="titulo">
- Login - Faça seu Login
- </ui:define>
- <ui:define name="conteudo">
- <h:form>
- <p:messages id="messages" />
- <p:panelGrid columns="2">
- <p:outputLabel for="nomeUsuario" value="Nome Usuário:" />
- <p:inputText id="nomeUsuario" value="#{LoginMB.pessoa.nomeUsuario}" />
- <p:outputLabel for="senha" value="Senha:" />
- <p:password id="senha" value="#{LoginMB.pessoa.senhaUsuario}" />
- <p:commandButton value="Enviar" icon="ui-icon-star" action="#{LoginMB.efetuaLogin}" ajax="false">
- </p:commandButton>
- </p:panelGrid>
- </h:form>
- </ui:define>
- </ui:composition>
- </h:body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment