<%@ 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}"/>:&nbsp;

<h:inputText value="#{user.login}" id="log">
  <f:validateLength minimum="3" />
</h:inputText>

&nbsp;<h:commandButton value="#{msgs.go}" action="login"/>&nbsp;
<h:message for="log"/>
</h:form>

</body>

</f:view>

</html>