2019-12-26 13:23:21 +10:00
|
|
|
<div class="col-md-10 offset-md-1 col-sm-12">
|
2019-12-21 12:46:48 +10:00
|
|
|
<nav aria-label="breadcrumb">
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li class="breadcrumb-item"><a href="/">Home</a></li>
|
|
|
|
<li class="breadcrumb-item" aria-current="page"><a href="/checkout/information">Information</a></li>
|
|
|
|
<li class="breadcrumb-item" aria-current="page"><a href="/checkout/shipping">Shipping</a></li>
|
|
|
|
<li class="breadcrumb-item active" aria-current="page"><a href="/checkout/payment">Payment</a></li>
|
|
|
|
</ol>
|
|
|
|
</nav>
|
|
|
|
<div class="row">
|
|
|
|
{{#if paymentMessage}}
|
|
|
|
<p class="text-danger text-center">{{paymentMessage}}</p>
|
|
|
|
{{/if}}
|
|
|
|
<div class="col-md-5">
|
2019-12-26 13:23:21 +10:00
|
|
|
<div class="card top-marg-15">
|
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title">{{ @root.__ "Customer details" }}</h5>
|
|
|
|
<ul class="list-group bottom-pad-15">
|
2019-12-21 12:46:48 +10:00
|
|
|
<li class="list-group-item">
|
|
|
|
{{@root.session.customerFirstname}} {{@root.session.customerLastname}} -
|
|
|
|
{{@root.session.customerEmail}}
|
|
|
|
<span class="pull-right"><a href="/checkout/information">Change</a></span>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2019-12-26 13:23:21 +10:00
|
|
|
<ul class="list-group bottom-pad-15">
|
2019-12-21 12:46:48 +10:00
|
|
|
{{#if @root.session.shippingCostApplied}}
|
|
|
|
<li class="list-group-item">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
Standard shipping
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
|
|
<span><strong>{{currencySymbol @root.config.currencySymbol}}{{formatAmount @root.config.flatShipping}}</strong></span>
|
|
|
|
<span class="pull-right"><a href="/checkout/shipping">Change</a></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{else}}
|
|
|
|
<li class="list-group-item">FREE shipping <span class="pull-right"><a href="/checkout/shipping">Change</a></span></li>
|
|
|
|
{{/if}}
|
|
|
|
</ul>
|
|
|
|
<form id="shipping-form" class="shipping-form" action="/{{config.paymentGateway}}/checkout_action{{@root.paymentType}}" method="post" role="form" data-toggle="validator" novalidate="false">
|
|
|
|
{{#if session.customerPresent}}
|
|
|
|
{{#ifCond config.paymentGateway '==' 'paypal'}}
|
|
|
|
{{> partials/payments/paypal}}
|
|
|
|
{{/ifCond}}
|
|
|
|
{{#ifCond config.paymentGateway '==' 'stripe'}}
|
|
|
|
{{> partials/payments/stripe}}
|
|
|
|
{{/ifCond}}
|
|
|
|
{{#ifCond config.paymentGateway '==' 'authorizenet'}}
|
|
|
|
{{> partials/payments/authorizenet}}
|
|
|
|
{{/ifCond}}
|
|
|
|
{{#ifCond config.paymentGateway '==' 'adyen'}}
|
|
|
|
{{> partials/payments/adyen}}
|
|
|
|
{{/ifCond}}
|
2020-01-01 14:27:42 +10:00
|
|
|
{{#ifCond config.paymentGateway '==' 'instore'}}
|
|
|
|
{{> partials/payments/instore}}
|
|
|
|
{{/ifCond}}
|
2019-12-21 12:46:48 +10:00
|
|
|
{{/if}}
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="cart" class="col-md-7">
|
|
|
|
{{> (getTheme 'cart')}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|