01: <?xml version="1.0" encoding="UTF-8"?>
02: <html xmlns="http://www.w3.org/1999/xhtml"
03:    xmlns:h="http://java.sun.com/jsf/html">
04:    <h:head>
05:       <title>The timezone application</title>
06:    </h:head>
07:    <h:body>
08:       <h:form>
09:          <p>
10:             Set time zone:
11:             <h:inputText value="#{timeZoneBean.city}"/>
12:          </p>
13:          <p>
14:             <h:commandButton value="Submit" 
15:                action="#{timeZoneBean.checkCity}"/>
16:          </p>
17:       </h:form>
18:    </h:body>
19: </html>