forked from WHMCS/orderforms-standard_cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
complete.tpl
64 lines (55 loc) · 2.33 KB
/
complete.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{include file="orderforms/standard_cart/common.tpl"}
<div id="order-standard_cart">
<div class="row">
<div class="cart-sidebar">
{include file="orderforms/standard_cart/sidebar-categories.tpl"}
</div>
<div class="cart-body">
<div class="header-lined">
<h1 class="font-size-36">{$LANG.orderconfirmation}</h1>
</div>
{include file="orderforms/standard_cart/sidebar-categories-collapsed.tpl"}
<p>{$LANG.orderreceived}</p>
<div class="row">
<div class="col-sm-8 col-sm-offset-2 offset-sm-2">
<div class="alert alert-info order-confirmation">
{$LANG.ordernumberis} <span>{$ordernumber}</span>
</div>
</div>
</div>
<p>{$LANG.orderfinalinstructions}</p>
{if $expressCheckoutInfo}
<div class="alert alert-info text-center">
{$expressCheckoutInfo}
</div>
{elseif $expressCheckoutError}
<div class="alert alert-danger text-center">
{$expressCheckoutError}
</div>
{elseif $invoiceid && !$ispaid}
<div class="alert alert-warning text-center">
{$LANG.ordercompletebutnotpaid}
<br /><br />
<a href="viewinvoice.php?id={$invoiceid}" target="_blank" class="alert-link">
{$LANG.invoicenumber}{$invoiceid}
</a>
</div>
{/if}
{foreach $addons_html as $addon_html}
<div class="order-confirmation-addon-output">
{$addon_html}
</div>
{/foreach}
{if $ispaid}
<!-- Enter any HTML code which should be displayed when a user has completed checkout here -->
<!-- Common uses of this include conversion and affiliate tracking scripts -->
{/if}
<div class="text-center">
<a href="clientarea.php" class="btn btn-default">
{$LANG.orderForm.continueToClientArea}
<i class="fas fa-arrow-circle-right"></i>
</a>
</div>
</div>
</div>
</div>