]> git.mxchange.org Git - pizzaservice-war.git/blob - web/customer/lost_passwd.jsp
Added footer for admin area + error include file "direct_call.jsp"
[pizzaservice-war.git] / web / customer / lost_passwd.jsp
1 <%-- 
2         Document   : lost_passwd
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%> - Passwort vergessen</title>
16         </head>
17
18         <body>
19                 <div id="header"> 
20                         <div id="title">
21                                 <h1><%=PizzaServiceApplication.MAIN_TITLE%> - Passwort vergessen</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>Passwort vergessen:</h2>
30                         </div>
31
32                         <div id="content">
33                                 <div class="para">
34                                         Sie haben Ihr Passwort vergessen?
35                                 </div>
36
37                                 <div class="para">
38                                         <div id="login_form">
39                                                 <form action="<%=request.getContextPath()%>/form_handler/do_passwd.jsp" accept-charset="utf-8" id="form" method="post">
40                                                         <div class="table">
41                                                                 <div class="table_header">
42                                                                         Bitte geben Sie Ihre Kundennummer oder eMail-Adresse ein:
43                                                                 </div>
44
45                                                                 <fieldset id="login_data">
46                                                                         <legend title="Bitte Daten eingeben:">Bitte Daten eingeben:</legend>
47
48                                                                         <div class="table_row">
49                                                                                 <div class="table_left">
50                                                                                         Kundennummer:
51                                                                                 </div>
52                                                                                 <div class="table_right">
53                                                                                         <input class="input" type="text" name="id" size="10" maxlength="20" />
54                                                                                 </div>
55
56                                                                                 <div class="clear"></div>
57                                                                         </div>
58
59                                                                         <div class="table_header">
60                                                                                 ... oder ...
61                                                                         </div>
62
63                                                                         <div class="table_row">
64                                                                                 <div class="table_left">
65                                                                                         eMail-Adresse:
66                                                                                 </div>
67                                                                                 <div class="table_right">
68                                                                                         <input class="input" type="text" name="email" size="20" maxlength="255" />
69                                                                                 </div>
70                                                                                 <div class="clear"></div>
71                                                                         </div>
72
73                                                                 </fieldset>
74
75                                                                 <div class="table_footer">
76                                                                         <input type="hidden" name="redirect" value="<%=request.getRequestURI()%>" />
77                                                                         <input class="reset" type="reset" value="Formular zurücksetzen" />
78                                                                         <input class="submit" type="submit" name="send" value="Weiter zu Schritt 2" />
79                                                                 </div>
80                                                         </div>
81                                                 </form>
82                                         </div>
83                                 </div>
84                         </div>
85                 </div>
86
87                 <jsp:include page="/static/footer.jsp" flush="true" />
88         </body>
89 </html>