]> 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.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 <%
17         // Handle forms
18         controller.doAdminHandleCategoryForms(request, response);
19 %>
20
21 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
23         <head>
24                 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
25                 <link rel="stylesheet" href="<%=request.getContextPath()%>/style.css" type="text/css"/>
26                 <title>Pizza-Service - Form-Handler</title>
27         </head>
28
29         <body>
30                 <div id="title">
31                         <h1>Pizza-Service - Form-Handler</h1>
32                 </div>
33
34                 <jsp:include page="/static/admin/admin_menu.jsp" flush="false" />
35
36                 <div id="content_outer">
37                         <div id="content_title">
38                                 <h2>Bitte nicht direkt aufrufen:</h2>
39                         </div>
40
41                         <div id="content">
42                                 Bitte rufen Sie diese Seite nicht direkt auf.
43                         </div>
44                 </div>
45         </body>
46 </html>