<?xml version="1.0" encoding="UTF-8"?>
<!-- c-basic-offset: 2; tab-width: 2; indent-tabs-mode: nil
  vi: set shiftwidth=2 tabstop=2 expandtab:
  :indentSize=2:tabSize=2:noTabs=true:
-->
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://xmlns.jcp.org/jsf/html"
      xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
      xmlns:f="http://xmlns.jcp.org/jsf/core"
      xmlns:pt="http://xmlns.jcp.org/jsf/passthrough">
<ui:composition>
    <div class="login-main">
        <h:form >
            <h:inputText pt:placeholder="user name" value="#{username}" />
            <h:inputSecret pt:placeholder="password"  value="#{password}" />
            <h:button value="Login" class="button-class" type="submit" />
        </h:form>
    </div>
</ui:composition>
</html>
