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