]> git.mxchange.org Git - pizzaservice-war.git/blob - web/customer/register.jsp
Continued with project:
[pizzaservice-war.git] / web / customer / register.jsp
1 <%-- 
2         Document   : register
3         Created on : 11.08.2015, 11:56:22
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%> - Neukunde</title>
16         </head>
17
18         <body>
19                 <div id="title">
20                         <h1><%=PizzaServiceApplication.MAIN_TITLE%> - Neukunde</h1>
21                 </div>
22
23                 <jsp:include page="/static/menu.jsp" flush="true" />
24
25                 <div id="content_outer">
26                         <div id="content_title">
27                                 <h2>Anmelden zum <%=PizzaServiceApplication.MAIN_TITLE%>:</h2>
28                         </div>
29
30                         <div id="content">
31                                 <div>
32                                         Sie sind bereits Kunde? Dann <a href="<%=request.getContextPath()%>/login.jsp">hier</a> einloggen.
33                                 </div>
34
35                                 <form action="<%=request.getContextPath()%>/form_handler/do_register.jsp" accept-charset="utf-8" id="form" method="post">
36                                         <div class="table">
37                                                 <div class="table_header">
38                                                         Bitte geben Sie mindestens Name, Anschrift und Telefonnummer ein:
39                                                 </div>
40
41                                                 <div class="table_footer">
42                                                         <input type="reset" value="Formular zurücksetzen" />
43                                                         <input type="submit" name="send" value="Anmelden" />
44                                                 </div>
45                                         </div>
46                                 </form>
47                         </div>
48                 </div>
49         </body>
50 </html>