Guest User

Untitled

a guest
Jul 5th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 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:f="http://xmlns.jcp.org/jsf/core"
  7. xmlns:ui="http://java.sun.com/jsf/facelets">
  8.  
  9. <ui:composition template="template.xhtml">
  10.  
  11. <ui:define name="titulo">
  12. Criar Time - Crie seu time
  13. </ui:define>
  14. <ui:define name="conteudo">
  15.  
  16. <h:messages globalOnly="true" />
  17.  
  18. <h:form id="criarTime">
  19. <p:messages id="messages" />
  20.  
  21. <p:panelGrid columns="1">
  22.  
  23. <p:outputLabel value="Nome Time:" for="nome" />
  24. <p:inputText id="nome" value="#{TimeMB.time.nome}" required="true">
  25. <f:passThroughAttribute name="type" value="nome" />
  26. </p:inputText>
  27.  
  28. <p:outputLabel value="Senha:" for="senhaTime" />
  29. <p:inputText id="senhaTime" value="#{TimeMB.time.senhaTime}"
  30. required="true">
  31. <f:passThroughAttribute name="type" value="senhaTime" />
  32. </p:inputText>
  33.  
  34. <p:commandButton value="Registrar Time"
  35. action="#{TimeMB.cadastrar}" process="@form" update="@form" />
  36.  
  37.  
  38. </p:panelGrid>
  39. </h:form>
  40. </ui:define>
  41. </ui:composition>
  42.  
  43.  
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment