expressCart/views/themes/Cloth/payment_complete.hbs

22 lines
1.0 KiB
Handlebars
Raw Normal View History

<div class="col-md-10 offset-md-1 col-sm-12 top-pad-50">
2018-01-07 04:55:48 +10:00
<div class="row">
<div class="text-center col-md-10 offset-md-1">
2018-01-07 04:55:48 +10:00
{{#ifCond result.orderStatus '==' 'Paid'}}
<h2 class="text-success">{{ @root.__ "Your payment has been successfully processed" }}</h2>
2018-01-07 04:55:48 +10:00
{{else}}
<h2 class="text-danger">{{ @root.__ "Your payment has failed. Please try again or contact us." }}</h2>
2018-01-07 04:55:48 +10:00
{{/ifCond}}
{{#if result}}
<div>
<p><strong>{{ @root.__ "Order ID" }}:</strong> {{result._id}}</p>
<p><strong>{{ @root.__ "Payment ID" }}:</strong> {{result.orderPaymentId}}</p>
2018-01-07 04:55:48 +10:00
</div>
{{/if}}
{{#ifCond result.orderStatus '==' 'Paid'}}
<h3 class="text-warning">{{ @root.__ "Please retain the details above as a reference of payment." }}</h3>
2018-01-07 04:55:48 +10:00
{{/ifCond}}
<a href="/" class="btn btn-outline-warning">Home</a>
2018-01-07 04:55:48 +10:00
</div>
</div>
</div>