01: <?xml version="1.0" encoding="UTF-8"?> 02: <html xmlns="http://www.w3.org/1999/xhtml" 03: xmlns:f="http://java.sun.com/jsf/core" 04: xmlns:h="http://java.sun.com/jsf/html"> 05: <h:head> 06: <title>The multizone application</title> 07: </h:head> 08: <h:body> 09: <h:form> 10: <p> 11: <h:selectOneRadio value="#{timeZoneBean.cityToRemove}" 12: layout="pageDirection"> 13: <f:selectItems value="#{timeZoneBean.citiesAndTimes}"/> 14: </h:selectOneRadio> 15: </p> 16: <p> 17: <h:commandButton value="Remove selected" 18: action="#{timeZoneBean.removeCity}"/> 19: <h:commandButton value="Add another" action="index"/> 20: </p> 21: </h:form> 22: </h:body> 23: </html>