Blame view

src/main/java/org/legrog/web/xyz/addCountry.xhtml 761 Bytes
Jean-Francois Leveque authored
1 2 3 4 5 6 7 8 9
<?xml version="1.0" encoding="UTF-8"?>
<!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://xmlns.jcp.org/jsf/html"
      xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
      xmlns:f="http://xmlns.jcp.org/jsf/core">
<body>
<h:form>
10 11 12 13
    <h:commandLink action="home">
        <h:outputText value="Menu principal"/>
    </h:commandLink>

Jean-Francois Leveque authored
14 15
    <h:panelGrid columns="2">
        <h:outputText value='Nom du pays'/>
16
        <h:inputText value='#{addCountryBean.countryName}'/>
Jean-Francois Leveque authored
17
        <h:outputText value='Add'/>
18
        <h:commandButton action="#{addCountryBean.add}" value="Add"/>
Jean-Francois Leveque authored
19 20 21 22
    </h:panelGrid>
</h:form>
</body>
</html>