rafaelvicio

Untitled

Jun 30th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. xmlns:h="http://java.sun.com/jsf/html"
  5. xmlns:p="http://primefaces.org/ui"
  6. xmlns:ui="http://java.sun.com/jsf/facelets">
  7. <h:head>
  8.  
  9. </h:head>
  10.  
  11. <h:body>
  12.  
  13. <ui:composition template="template.xhtml">
  14. <ui:define name="titulo">
  15. Login - Faça seu Login
  16. </ui:define>
  17. <ui:define name="conteudo">
  18. <h:form>
  19. <p:messages id="messages" />
  20. <p:panelGrid columns="2">
  21. <p:outputLabel for="nomeUsuario" value="Nome Usuário:" />
  22. <p:inputText id="nomeUsuario" value="#{LoginMB.pessoa.nomeUsuario}" />
  23.  
  24. <p:outputLabel for="senha" value="Senha:" />
  25. <p:password id="senha" value="#{LoginMB.pessoa.senhaUsuario}" />
  26.  
  27. <p:commandButton value="Enviar" icon="ui-icon-star" action="#{LoginMB.efetuaLogin}" ajax="false">
  28. </p:commandButton>
  29.  
  30. </p:panelGrid>
  31. </h:form>
  32. </ui:define>
  33. </ui:composition>
  34.  
  35. </h:body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment