]> git.mxchange.org Git - pizzaservice-war.git/blob - web/customer/lost_passwd.xhtml
updated jars
[pizzaservice-war.git] / web / customer / lost_passwd.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <html xmlns="http://www.w3.org/1999/xhtml"
3           xmlns:ui="http://java.sun.com/jsf/facelets"
4           xmlns:h="http://xmlns.jcp.org/jsf/html"
5           xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
6           xmlns:f="http://xmlns.jcp.org/jsf/core"
7           >
8
9         <ui:composition template="/WEB-INF/templates/guest/guest_base.tpl">
10                 <ui:define name="title">Passwort vergessen</ui:define>
11
12                 <ui:define name="menu">
13                         <ui:include id="menu" class="guest_menu" src="/WEB-INF/templates/guest/guest_menu.tpl" />
14                 </ui:define>
15
16                 <ui:define name="content_header">
17                         Stellen Sie Ihr Passwort wieder her.
18                 </ui:define>
19
20                 <ui:define name="content">
21                         <div class="para" id="customer_lost_password_content">
22                                 <h:form acceptcharset="utf-8" id="lost_password_form">
23                                         <div class="table">
24                                                 <div class="table_header">
25                                                         Sie haben Ihr Passwort vergessen?
26                                                 </div>
27
28                                                 <fieldset id="login_data">
29                                                         <legend title="Bitte Daten eingeben:">Bitte Daten eingeben:</legend>
30
31                                                         <div class="table_row">
32                                                                 <div class="table_left">
33                                                                         <h:outputLabel for="id" value="#{msg.CUSTOMER_NUMBER}" />
34                                                                 </div>
35
36                                                                 <div class="table_right">
37                                                                         <h:inputText class="input" id="id" size="10" maxlength="20" />
38                                                                 </div>
39
40                                                                 <div class="clear"></div>
41                                                         </div>
42
43                                                         <div class="table_header">
44                                                                 ... oder ...
45                                                         </div>
46
47                                                         <div class="table_row">
48                                                                 <div class="table_left">
49                                                                         <h:outputLabel for="email" value="eMail-Adresse:" />
50                                                                 </div>
51
52                                                                 <div class="table_right">
53                                                                         <h:inputText class="input" id="email" size="20" maxlength="255" />
54                                                                 </div>
55
56                                                                 <div class="clear"></div>
57                                                         </div>
58
59                                                 </fieldset>
60
61                                                 <div class="table_footer">
62                                                         <h:commandButton class="reset" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
63                                                         <h:commandButton class="submit" type="submit" value="Weiter zu Schritt 2" action="#{controller.doLostPasswordStep2()}" />
64                                                 </div>
65                                         </div>
66                                 </h:form>
67                         </div>
68                 </ui:define>
69
70                 <ui:define name="footer">
71                         <ui:include id="footer" class="guest_footer" src="/WEB-INF/templates/guest/guest_footer.tpl" />
72                 </ui:define>
73         </ui:composition>
74 </html>