]> git.mxchange.org Git - pizzaservice-war.git/blob - web/admin/index.jsp
Added missing init() method + renamed localInit() -> genericInit()
[pizzaservice-war.git] / web / admin / index.jsp
1 <%-- 
2         Document   : index
3         Created on : 04.08.2015, 10:33:10
4         Author     : Roland Haeder
5 --%>
6
7 <%--<%@page errorPage="errorHandler.jsp" %>--%>
8 <%@page import="java.util.Map"%>
9 <%@page import="java.util.Iterator"%>
10 <%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%>
11 <%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%>
12 <%@page import="org.mxchange.jshopejb.product.Product"%>
13 <%@page contentType="text/html" pageEncoding="UTF-8"%>
14 <jsp:useBean id="controller" scope="session" class="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean" type="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 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
20 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
21         <head>
22                 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
23                 <link rel="stylesheet" href="${basePath}/style.css" type="text/css" />
24                 <title>Pizza-Service - Administration</title>
25         </head>
26
27         <body>
28                 <div id="header"> 
29                         <div id="title">
30                                 <h1>Pizza-Service - Administration</h1>
31                         </div>
32                 </div>
33
34                 <jsp:include page="/WEB-INF/static/admin/admin_menu.jsp" flush="false" />
35
36                 <div id="content_outer">
37                         <div id="content_title">
38                                 <h2>Willkommen zur Administration:</h2>
39                         </div>
40
41                         <div id="content">
42                                 Einiges kann hier eingestellt werden.
43                         </div>
44                 </div>
45
46                 <jsp:include page="/WEB-INF/static/admin/admin_footer.jsp" flush="false" />
47         </body>
48 </html>