-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathORDER.html
38 lines (31 loc) · 977 Bytes
/
ORDER.html
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
<h1>Your Order</h1>
<table id="checkout-cart" class="shopping-cart">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Qty</th>
<th scope="col">Price</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div id="pricing">
<p id="shipping">
<strong>Shipping</strong>: <span id="sshipping"></span>
</p>
<p id="sub-total">
<strong>Total</strong>: <span id="stotal"></span>
</p>
</div>
<div id="user-details">
<h2>Your Data</h2>
<div id="user-details-content"></div>
</div>
<form id="paypal-form" action="" method="post">
<input type="hidden" name="cmd" value="_cart" />
<input type="hidden" name="upload" value="1" />
<input type="hidden" name="business" value="" />
<input type="hidden" name="currency_code" value="" />
<input type="submit" id="paypal-btn" class="btn" value="Pay with PayPal" />
</form>