]> git.mxchange.org Git - pizzaservice-war.git/blob - web/customer/lost_passwd.xhtml
81f63af23106e6a19f758e532a96f56a69a392eb
[pizzaservice-war.git] / web / customer / lost_passwd.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml"
4           xmlns:ui="http://java.sun.com/jsf/facelets"
5           xmlns:h="http://xmlns.jcp.org/jsf/html"
6           xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
7           xmlns:f="http://xmlns.jcp.org/jsf/core"
8           >
9
10         <ui:composition template="/WEB-INF/templates/guest/guest_base.tpl">
11                 <ui:define name="title">#{msg.PAGE_TITLE_CUSTOMER_LOST_PASSWORD}</ui:define>
12
13                 <ui:define name="menu">
14                         <ui:include id="menu" class="guest_menu" src="/WEB-INF/templates/guest/guest_menu.tpl" />
15                 </ui:define>
16
17                 <ui:define name="content_header">
18                         #{msg.SUB_TITLE_CUSTOMER_LOST_PASSWORD}
19                 </ui:define>
20
21                 <ui:define name="content">
22                         <div class="para" id="customer_lost_password_content">
23                                 <h:form id="lost_password_form">
24                                         <div class="table">
25                                                 <div class="table_header">
26                                                         #{msg.GUEST_LOST_PASSWORD_TITLE}
27                                                 </div>
28
29                                                 <fieldset id="login_data">
30                                                         <legend title="#{msg.GUEST_LOST_PASSWORD_LEGEND_TITLE}">#{msg.GUEST_LOST_PASSWORD_LEGEND}</legend>
31
32                                                         <div class="table_row">
33                                                                 <div class="table_left">
34                                                                         <h:outputLabel for="id" value="#{msg.ENTER_CUSTOMER_NUMBER}" />
35                                                                 </div>
36
37                                                                 <div class="table_right">
38                                                                         <h:inputText class="input" id="id" size="10" maxlength="20" />
39                                                                 </div>
40
41                                                                 <div class="clear"></div>
42                                                         </div>
43
44                                                         <div class="table_header">
45                                                                 #{msg.GUEST_LOST_PASSWORD_NUMBER_OR_EMAIL}
46                                                         </div>
47
48                                                         <div class="table_row">
49                                                                 <div class="table_left">
50                                                                         <h:outputLabel for="email" value="#{msg.ENTER_EMAIL_ADDRESS}" />
51                                                                 </div>
52
53                                                                 <div class="table_right">
54                                                                         <h:inputText class="input" id="email" size="20" maxlength="255" />
55                                                                 </div>
56
57                                                                 <div class="clear"></div>
58                                                         </div>
59
60                                                 </fieldset>
61
62                                                 <div class="table_footer">
63                                                         <h:commandButton class="reset" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
64                                                         <h:commandButton class="submit" type="submit" value="#{msg.BUTTON_CONTINUE_STEP_2}" action="#{passwdRecoverController.doLostPasswordStep2()}" />
65                                                 </div>
66                                         </div>
67                                 </h:form>
68                         </div>
69                 </ui:define>
70
71                 <ui:define name="footer">
72                         <ui:include id="footer" class="guest_footer" src="/WEB-INF/templates/guest/guest_footer.tpl" />
73                 </ui:define>
74         </ui:composition>
75 </html>