]> git.mxchange.org Git - pizzaservice-war.git/blob - web/customer/login.jsp
Added footer for admin area + error include file "direct_call.jsp"
[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 contentType="text/html" pageEncoding="UTF-8"%>
8 <%@page import="org.mxchange.pizzaapplication.application.PizzaServiceApplication"%>
9
10 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
11 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
12         <head>
13                 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
14                 <link rel="stylesheet" href="<%=request.getContextPath()%>/style.css" type="text/css"/>
15                 <title><%=PizzaServiceApplication.MAIN_TITLE%> - Einloggen</title>
16         </head>
17
18         <body>
19                 <div id="header"> 
20                         <div id="title">
21                                 <h1><%=PizzaServiceApplication.MAIN_TITLE%> - Einloggen</h1>
22                         </div>
23                 </div>
24
25                 <jsp:include page="/static/menu.jsp" flush="true" />
26
27                 <div id="content_outer">
28                         <div id="content_title">
29                                 <h2>Einloggen als bestehender Kunde:</h2>
30                         </div>
31
32                         <div id="content">
33                                 <div class="para">
34                                         Noch kein Kunde? Einfach beim Bestellen anmelden oder <a href="<%=request.getContextPath()%>/customer/register.jsp">hier</a> anmelden.
35                                 </div>
36
37                                 <div class="para">
38                                         <jsp:include page="/static/forms/form_login.jsp" flush="true" />
39                                 </div>
40
41                                 <div class="para">
42                                         <a href="<%=request.getContextPath()%>/lost_passwd.jsp">Passwort vergessen?</a>
43                                 </div>
44                         </div>
45                 </div>
46
47                 <jsp:include page="/static/footer.jsp" flush="true" />
48         </body>
49 </html>