]> git.mxchange.org Git - pizzaservice-war.git/blob - web/form_handler/admin/do_category.jsp
Migration to JSF continued:
[pizzaservice-war.git] / web / form_handler / admin / do_category.jsp
1 <%-- 
2         Document   : order
3         Created on : 07.08.2015, 14:58:21
4         Author     : Roland Haeder
5 --%>
6
7 <%--<%@page errorPage="errorHandler.jsp" %>--%>
8 <%@page contentType="text/html" pageEncoding="UTF-8"%>
9 <%@page import="org.mxchange.pizzaapplication.beans.PizzaServiceBean"%>
10 <%@page import="org.mxchange.pizzaapplication.beans.PizzaBean"%>
11 <%@page import="org.mxchange.pizzaapplication.beans.customer.CustomerBean" %>
12 <%@page import="org.mxchange.pizzaapplication.product.Product"%>
13 <%@page import="org.mxchange.pizzaapplication.exceptions.CategoryTitleAlreadyUsedException"%>
14 <jsp:useBean id="controller" scope="session" class="org.mxchange.pizzaapplication.beans.PizzaServiceBean" type="org.mxchange.pizzaapplication.beans.PizzaBean" />
15
16 <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
17 <c:set var="basePath" value="${pageContext.request.contextPath}" />
18
19 <%
20         // Handle forms
21         controller.doAdminHandleCategoryForms(request, response);
22 %>
23
24 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
25 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
26         <head>
27                 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
28                 <link rel="stylesheet" href="${basePath}/style.css" type="text/css"/>
29                 <title>Pizza-Service - Form-Handler</title>
30         </head>
31
32         <body>
33                 <div id="title">
34                         <h1>Pizza-Service - Form-Handler</h1>
35                 </div>
36
37                 <jsp:include page="/static/admin/admin_menu.jsp" flush="false" />
38
39                 <div id="content_outer">
40                         <div id="content_title">
41                                 <h2>Bitte nicht direkt aufrufen:</h2>
42                         </div>
43
44                         <div id="content">
45                                 Bitte rufen Sie diese Seite nicht direkt auf.
46                         </div>
47                 </div>
48         </body>
49 </html>