<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <f:loadBundle basename="jsfapp.messages" var="msgs" /> <html> <f:view> <head> <title><h:outputText value="#{msgs.title}" /></title> </head> <body> <h:form> <h:outputText value="#{msgs.login}"/>: <h:inputText value="#{user.login}" id="log"> <f:validateLength minimum="3" /> </h:inputText> <h:commandButton value="#{msgs.go}" action="login"/> <h:message for="log"/> </h:form> </body> </f:view> </html>