-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcashondelivery.php
60 lines (56 loc) · 1.7 KB
/
cashondelivery.php
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
<?php include("header.php");?>
<section id="cart_items" style="padding-bottom:50px">
<div class="container">
<div class="breadcrumbs">
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li class="active">Shipping</li>
</ol>
</div><!--/breadcrums-->
<div class="shopper-informations">
<div class="step-one">
<h2 class="heading">Order Summation</h2>
</div>
<div class="row">
<div class="col-sm-12 clearfix">
<div class="shopper-info">
<p>Cash on delivery (COD) payment</p>
<div style="border: 1px solid #e3e3e3;padding:20px">
<form>
<p style="font-size:15px;color: #585858">
- You have chosen the cash on delivery method.<br>
- The total amount of your order is : <span style="color: #FE980F;font-weight:700"> $71 </span>
</p>
<p style="font-size:17px;color: #585858;font-weight:700">Please confirm your order by clicking 'I confirm my order'.
</p>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="shopper-informations">
<div class="row">
<div class="col-sm-2">
<div class="shopper-info cashondelivery_other">
<a href="checkout_final.php"> Other Payment Method</a>
</div>
</div>
<div class="col-sm-4">
<div class="shopper-info">
</div>
</div>
<div class="col-sm-4">
<div class="shopper-info">
</div>
</div>
<div class="col-sm-2">
<div class="shopper-info cashondelivery_other">
<a href=""> I Confirm My Order</a>
</div>
</div>
</div>
</div>
</div>
</section> <!--/#cart_items-->
<?php include("footer.php");?>