]> git.mxchange.org Git - pizzaservice-war.git/blob - web/customer/login.jsp
minor improvement
[pizzaservice-war.git] / web / customer / login.jsp
1 <%-- 
2         Document   : login
3         Created on : 11.08.2015, 11:35:53
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.controller.PizzaServiceBean"%>
10
11 <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
12 <c:set var="basePath" value="${pageContext.request.contextPath}" />
13
14 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
15 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
16         <head>
17                 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
18                 <link rel="stylesheet" href="${basePath}/style.css" type="text/css" />
19                 <title>Pizza-Service - Einloggen</title>
20         </head>
21
22         <body>
23                 <div id="header"> 
24                         <div id="title">
25                                 <h1>Pizza-Service - Einloggen</h1>
26                         </div>
27                 </div>
28
29                 <jsp:include page="/static/guest/guest_menu.jsp" flush="false" />
30
31                 <div id="content_outer">
32                         <div id="content_title">
33                                 <h2>Einloggen als bestehender Kunde:</h2>
34                         </div>
35
36                         <div id="content">
37                                 <div class="para">
38                                         Noch kein Kunde? Einfach beim Bestellen anmelden oder <a href="${basePath}/customer/register.jsp">hier</a> anmelden.
39                                 </div>
40
41                                 <div class="para">
42                                         <jsp:include page="/static/forms/form_login.jsp" flush="false" />
43                                 </div>
44
45                                 <div class="para">
46                                         <a href="${basePath}/lost_passwd.jsp">Passwort vergessen?</a>
47                                 </div>
48                         </div>
49                 </div>
50
51                 <jsp:include page="/static/guest/guest_footer.jsp" flush="false" />
52         </body>
53 </html>