C:\russ\dev\JSFAction\web\goodbye.jsp
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>

<f:view>
<html>
  <head>
    <title> JSF in Action - Hello, World! </title>
  </head>
  <body>
    <h:form id="goodbyeForm">
      <h:outputText id="welcomeOutput"
                    value="Goodbye!"
                    style="font-family: Ariel, sans-serif;
                            font-size: 24;
                            color: green;" />
      <p>
        <h:message id="errors" for="helloInput" style="color: red" />
      </p>
      <p>
        <h:outputText id="helloBeanOutputLabel"
                      value="Number of controls displayed:" />
        <h:inputText id="helloBeanOutput"
                      value="#{helloBean.numControls}" />
      </p>
    </h:form>
  </body>
</html>
</f:view>
<!-- vim: set tabstop=2 shiftwidth=2 noexpandtab: -->