-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout_finish.php
More file actions
130 lines (125 loc) · 5.86 KB
/
Copy pathcheckout_finish.php
File metadata and controls
130 lines (125 loc) · 5.86 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?
include "./include/inc_base.php";
include _BASE_DIR ."/include/inc_top.php";
?>
<div id="maincontainer">
<section id="product">
<div class="container">
<!-- breadcrumb -->
<ul class="breadcrumb">
<li>
<a href="#">Home</a>
<span class="divider">/</span>
</li>
<li class="active">Checkout</li>
</ul>
<div class="row">
<!-- Account Login-->
<div class="col-lg-9 col-md-9 col-sm-12 col-xs-12">
<h2 class="heading1"><span class="maintext">Checkout</span></h2>
<div class="checkoutsteptitle">Step 5: Confirm Order</div>
<div class="checkoutstep">
<div class="cart-info">
<table class="table table-striped table-bordered">
<tr>
<th class="image">Image</th>
<th class="name">Product Name</th>
<th class="model">Model</th>
<th class="quantity">Quantity</th>
<th class="price">Unit Price</th>
<th class="total">Total</th>
</tr>
<tr>
<td class="image"><a ><img title="product" alt="product" src="img/prodcut-40x40.jpg" height="50" width="50"></a></td>
<td class="name"><a >Jeans</a></td>
<td class="model">My Product</td>
<td class="quantity"><input type="text" size="1" value="1" name="quantity[40]" class="span1">
<a class="mr10"> <i class="tooltip-test font24 icon-refresh " data-original-title="Update"> </i> </a> <a ><i class="tooltip-test font24 icon-remove-circle" data-original-title="Remove"> </i></a></td>
<td class="price">$120.68</td>
<td class="total">$120.68</td>
</tr>
<tr>
<td class="image"><a ><img title="product" alt="product" src="img/prodcut-40x40.jpg" height="50" width="50"></a></td>
<td class="name"><a >T-Shirt</a></td>
<td class="model">My Product</td>
<td class="quantity"><input type="text" size="1" value="1" name="quantity[40]" class="span1">
<a class="mr10"> <i class="tooltip-test font24 icon-refresh " data-original-title="Update"> </i> </a> <a ><i class="tooltip-test font24 icon-remove-circle" data-original-title="Remove"> </i></a></td>
<td class="price">$120.68</td>
<td class="total">$120.68</td>
</tr>
<tr>
<td class="image"><a ><img title="product" alt="product" src="img/prodcut-40x40.jpg" height="50" width="50"></a></td>
<td class="name"><a >Mobile</a></td>
<td class="model">My Product</td>
<td class="quantity"><input type="text" size="1" value="1" name="quantity[40]" class="span1">
<a class="mr10"> <i class="tooltip-test font24 icon-refresh " data-original-title="Update"> </i> </a> <a ><i class="tooltip-test font24 icon-remove-circle" data-original-title="Remove"> </i></a></td>
<td class="price">$130.00</td>
<td class="total">$110.25</td>
</tr>
<tr>
<td class="image"><a ><img title="product" alt="product" src="img/prodcut-40x40.jpg" height="50" width="50"></a></td>
<td class="name"><a >T-Shirt</a></td>
<td class="model">product 11</td>
<td class="quantity"><input type="text" size="1" value="1" name="quantity[40]" class="span1">
<a class="mr10"> <i class="tooltip-test font24 icon-refresh " data-original-title="Update"> </i> </a> <a ><i class="tooltip-test font24 icon-remove-circle" data-original-title="Remove"> </i></a></td>
<td class="price">$124.38</td>
<td class="total">$120.46</td>
</tr>
</table>
</div>
<div class="pull-right">
<table class="table table-striped table-bordered ">
<tbody>
<tr>
<td><span class="extra bold">Sub-Total :</span></td>
<td><span class="bold">$101.0</span></td>
</tr>
<tr>
<td><span class="extra bold">Eco Tax (-2.00) :</span></td>
<td><span class="bold">$11.0</span></td>
</tr>
<tr>
<td><span class="extra bold">VAT (17.5%) :</span></td>
<td><span class="bold">$21.0</span></td>
</tr>
<tr>
<td><span class="extra bold totalamout">Total :</span></td>
<td><span class="bold totalamout">$120.68</span></td>
</tr>
</tbody>
</table>
<input type="submit" class="btn btn-orange pull-right" value="CheckOut">
<input type="submit" class="btn btn-orange pull-right mr10" value="Continue Shopping">
</div>
</div>
</div>
<!-- Sidebar Start-->
<div class="col-lg-3 col-md-3 col-xs-12 col-sm-12 span3">
<aside>
<div class="sidewidt">
<h2 class="heading2"><span><i class="icon-list-ol"></i> Checkout Steps</span></h2>
<ul class="nav nav-list categories">
<li>
<a href="#">Billing & Shipping Details</a>
</li>
<li>
<a href="#">Delivery Method</a>
</li>
<li>
<a href="#"> Payment Method</a>
</li>
<li>
<a class="active" href="#">Order Completed!</a>
</li>
</ul>
</div>
</aside>
</div>
<!-- Sidebar End-->
</div>
</div>
</section>
</div>
<?
include _BASE_DIR ."/include/inc_bottom.php";
?>