var acl={}
acl.ACLLoginForm1 = function(){
    this.getForm = function(zoneTitle){
    var s = "<form id='aclForm'>"
        s += "<table>"
        s += "<tr>"
        s += "<td colspan='2'  class='aclTitleCell1'>"
        s += zoneTitle
        s += "</td>"
        s += "</tr>"
		s += "<tr class='aclFormRow1'>"
        s += "<td>"
		s += "identyfikator"
        s += "</td>"
		 s += "<td>"
		s += "<input type='text' id='hp01' />"
        s += "</td>"
        s += "</tr>"
       s += "<tr class='aclFormRow1'>"
        s += "<td>"
		s += "hasło"
        s += "</td>"
		 s += "<td>"
		s += "<input type='password' id='hp02' />"
        s += "</td>"
        s += "</tr>"
		s += "<tr class='aclFormRow2'>"
		s += "<td>"
		s += "<input type='button' value='rezygnuję' id='aclCancel' />"
        s += "</td>"
        s += "<td>"
		s += "<input type='submit' value='zaloguj się' id='aclSubmit'/>"
        s += "</td>"
        s += "</tr>"
		s += "<tr class='aclFormRow3'>"
		s += "<td colspan='2'  id='aclFormComunicate'>"
		s += "</td>"
		s += "</tr>"
        s += "</table>"
         s += "</form>"
        return s
    }
}
