<%@ page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8" language="java" %>

<%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

<f:view locale="#{Session.locale}">
    
    <%@ include file ="../../WEB-INF/jspf/Header.jspf" %>
    
    <body>
        <%@ include file="../../WEB-INF/jspf/TopMenu.jspf" %>
        <div class="container">
            <%@ include file ="../../WEB-INF/jspf/AdminMenu.jspf" %>
            <div class="adminContent">
                <h2>Add organization</h2>
                <h:form>
                    <h:panelGrid columns="2">
                        <h:outputText value="Title:"/>
                        <h:inputText id="title" value="#{facade.organization.title}" title="Title" />
                    </h:panelGrid>
                    <h:commandButton action="#{facade.createOrganization}" value="Create"/>
                </h:form>
            </div>
        </div>
    </body>
    
    <%@ include file ="../../WEB-INF/jspf/Footer.jspf" %>
</f:view>