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:f="http://xmlns.jcp.org/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets">
- <ui:composition template="template.xhtml">
- <ui:define name="titulo">
- Criar Time - Crie seu time
- </ui:define>
- <ui:define name="conteudo">
- <h:messages globalOnly="true" />
- <h:form id="criarTime">
- <p:messages id="messages" />
- <p:panelGrid columns="1">
- <p:outputLabel value="Nome Time:" for="nome" />
- <p:inputText id="nome" value="#{TimeMB.time.nome}" required="true">
- <f:passThroughAttribute name="type" value="nome" />
- </p:inputText>
- <p:outputLabel value="Senha:" for="senhaTime" />
- <p:inputText id="senhaTime" value="#{TimeMB.time.senhaTime}"
- required="true">
- <f:passThroughAttribute name="type" value="senhaTime" />
- </p:inputText>
- <p:commandButton value="Registrar Time"
- action="#{TimeMB.cadastrar}" process="@form" update="@form" />
- </p:panelGrid>
- </h:form>
- </ui:define>
- </ui:composition>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment