]> git.mxchange.org Git - pizzaservice-war.git/blob - web/form_handler/admin/do_category.jsp
Continued with project:
[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.application.PizzaServiceApplication"%>
10 <%@page import="org.mxchange.pizzaapplication.application.PizzaApplication"%>
11 <%@page import="org.mxchange.pizzaapplication.beans.CustomerBean" %>
12 <%@page import="org.mxchange.pizzaapplication.product.Product"%>
13 <%@page import="org.mxchange.pizzaapplication.exceptions.CategoryTitleAlreadyUsedException"%>
14
15 <%
16         // Init application instance
17         PizzaApplication app = PizzaServiceApplication.getInstance(application);
18
19         // Handle forms
20         app.doAdminHandleCategoryForms(request, response);
21 %>
22
23 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
24 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
25         <head>
26                 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
27                 <link rel="stylesheet" href="<%=request.getContextPath()%>/style.css" type="text/css"/>
28                 <title><%=PizzaServiceApplication.MAIN_TITLE%> - Form-Handler</title>
29         </head>
30
31         <body>
32                 <div id="title">
33                         <h1><%=PizzaServiceApplication.MAIN_TITLE%> - Form-Handler</h1>
34                 </div>
35
36                 <jsp:include page="/static/admin/menu.jsp" flush="true" />
37
38                 <div id="content_outer">
39                         <div id="content_title">
40                                 <h2>Bitte nicht direkt aufrufen:</h2>
41                         </div>
42
43                         <div id="content">
44                                 Bitte rufen Sie diese Seite nicht direkt auf.
45                         </div>
46                 </div>
47         </body>
48 </html>