]> git.mxchange.org Git - pizzaservice-war.git/blob - web/customer/checkout2.xhtml
Don't cherry-pick:
[pizzaservice-war.git] / web / customer / checkout2.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
4         lang="#{localizationController.language}" xml:lang="#{localizationController.language}"
5         xmlns="http://www.w3.org/1999/xhtml"
6         xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
7         xmlns:h="http://xmlns.jcp.org/jsf/html"
8         xmlns:f="http://xmlns.jcp.org/jsf/core"
9         >
10
11         <ui:composition template="/WEB-INF/templates/guest/guest_base.tpl">
12                 <ui:define name="guest_title">
13                         <h:outputText value="#{msg.PAGE_TITLE_INDEX_CHECKOUT2}" />
14                 </ui:define>
15
16                 <ui:define name="content_header">
17                         <h:outputText value="#{msg.CONTENT_TITLE_INDEX_CHECKOUT2}" />
18                 </ui:define>
19
20                 <ui:define name="content">
21                         <div class="basket_content">
22                                 <ui:include src="/WEB-INF/templates/basket/full_basket.tpl" />
23
24                                 <ui:include src="/WEB-INF/templates/basket/total_sum.tpl" />
25                         </div>
26
27                         <div class="checkout_outer">
28                                 <div class="checkout_title">
29                                         <h:outputText value="#{msg.GUEST_CHECKOUT_WITHOUT_REGISTRATION_TITLE}" />
30                                 </div>
31
32                                 <div class="registration_form">
33                                         <h:form id="checkout_form">
34                                                 <div class="table">
35                                                         <div class="table_header">
36                                                                 <h:outputText value="#{msg.GUEST_PAYMENT_WITHOUT_REGISTRATION_TITLE}" />
37                                                         </div>
38
39                                                         <ui:include src="/WEB-INF/templates/generic/form_personal_data.tpl" />
40
41                                                         <div class="para">
42                                                                 <!-- @TODO Move this to i18n bundle //-->
43                                                                 Derzeit ist nur eine Bezahlung gegen Rechnung möglich.
44                                                         </div>
45
46                                                         <ui:include src="/WEB-INF/templates/guest/guest_privacy_terms.tpl" />
47
48                                                         <div class="table_footer">
49                                                                 <h:commandButton class="reset" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
50                                                                 <h:commandButton class="submit" type="submit" id="checkout" value="#{msg.BUTTON_COMPLETE_ORDER}" action="#{checkoutController.doCheckout()}" />
51                                                         </div>
52                                                 </div>
53                                         </h:form>
54                                 </div>
55                         </div>
56                 </ui:define>
57         </ui:composition>
58 </html>