01: <html>
02:    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
03:    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
04: 
05:    <f:view>
06:       <head>                  
07:          <title>The multizone application</title>
08:       </head>
09:       <body>
10:          <h:form>
11:             <p>
12:                Enter city:
13:                <h:inputText value="#{zone.city}"/>
14:             </p>
15:             <p>
16:                <h:commandButton value="Submit" action="#{zone.addCity}"/>
17:             </p>
18:          </h:form>
19:       </body>
20:    </f:view>
21: </html>