diff options
| author | Anatasof Wirapraja <anata@darapsa.co.id> | 2021-07-21 14:32:37 +0700 | 
|---|---|---|
| committer | Anatasof Wirapraja <anata@darapsa.co.id> | 2021-07-21 14:32:37 +0700 | 
| commit | ae3099af2119452f0351da6e3202ddb2acd04790 (patch) | |
| tree | 27c8907879ccda09de452c1145c9f72ee431949e /pages/member | |
| parent | ac529574768c09fbe12f41f65aff79b1345bac9f (diff) | |
initial commit order-detail.html
Diffstat (limited to 'pages/member')
| -rw-r--r-- | pages/member/order-detail.html | 68 | 
1 files changed, 68 insertions, 0 deletions
| diff --git a/pages/member/order-detail.html b/pages/member/order-detail.html new file mode 100644 index 0000000..efec55c --- /dev/null +++ b/pages/member/order-detail.html @@ -0,0 +1,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__
\ No newline at end of file |