<html> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <f:view> <head> <f:loadBundle basename="com.corejsf.messages" var="msgs"/> <title><h:outputText value="#{msgs.title}"/></title> </head> <body> <h:form> <p> <h:outputText value="#{msgs.stillNotCorrect}"/> <h:outputText value="#{msgs.correctAnswer}"/> <h:outputText value="#{quiz.answer}"/>. </p> <p>Here is your next problem.</p> <p> <h:outputText value="#{quiz.question}"/> </p> <p> <h:inputText value="#{quiz.response}"/> </p> <p> <h:commandButton value="#{msgs.answerButton}" action="#{quiz.answerAction}"/> </p> </h:form> </body> </f:view> </html>