summaryrefslogtreecommitdiff
path: root/pages/member/order-detail.html
blob: efec55cb95ce459a50460bef5a398f4c1ba75aa1 (plain)
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
65
66
67
68
@_TOP_@
<!-- BEGIN CONTENT -->
<div class="container p-4">
	<!-- Hero Section-->
	<div class="py-2">
		<h1>[L]Order #1234[/L]</h1>
		[if session logged_in]
		<p class="lead">[L]Please verify the information below and click the <b>'Place Order'</b> button to process your order.[/L]</p>[else]
		[include include/checkout/login_form][/else][/if][if !variable NO_TAX_POPUP]
		[include include/checkout/tax_popup][/if]
		[edisplay show_label=1 show_var=0 keep=1]
	</div>
	<!-- End Hero Section -->

	<!-- Order Info -->
	<div class="card card-sm">
		<div class="card-body bg-light">
			<div class="row">
				<div class="col-6 col-lg-3">

					<!-- Heading -->
					<h6 class="heading-xxxs text-muted">Order No:</h6>

					<!-- Text -->
					<p class="mb-lg-0 font-size-sm font-weight-bold">
						673290789
					</p>

				</div>
				<div class="col-6 col-lg-3">

					<!-- Heading -->
					<h6 class="heading-xxxs text-muted">Shipped date:</h6>

					<!-- Text -->
					<p class="mb-lg-0 font-size-sm font-weight-bold">
						<time datetime="2019-10-01">
							01 Oct, 2019
						</time>
					</p>
				</div>
				<div class="col-6 col-lg-3">

					<!-- Heading -->
					<h6 class="heading-xxxs text-muted">Status:</h6>

					<!-- Text -->
					<p class="mb-0 font-size-sm font-weight-bold">
						In Transit
					</p>
				</div>
				<div class="col-6 col-lg-3">

					<!-- Heading -->
					<h6 class="heading-xxxs text-muted">Order Amount:</h6>

					<!-- Text -->
					<p class="mb-0 font-size-sm font-weight-bold">
						$259.00
					</p>
				</div>
			</div>
		</div>
	</div>
	<!-- Order Info -->
</div>
<!-- END CONTENT -->
__BOTTOM__