-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
executable file
·159 lines (149 loc) · 4.99 KB
/
checkout.html
File metadata and controls
executable file
·159 lines (149 loc) · 4.99 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE HTML>
<html>
<head>
<title>Sweets Complete | Checkout</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name ="description" content ="Sweets Complete">
<meta name="keywords" content="">
<link rel="stylesheet" href="css/main.css" type="text/css">
<link rel="shortcut icon" href="images/favicon.ico?v=2" type="image/x-icon" />
</head>
<body>
<div id="wrapper">
<div id="maincontent">
<div id="header">
<div id="logo" class="left">
<a href="index.php"><img src="images/logo.png" alt="SweetsComplete.Com"/></a>
</div>
<div class="right marT10">
<b>
<a href="login.html" >Login</a> |<a href="members.html" >Our Members</a> |<a href="cart.html" class="active" >Shopping Cart</a>
</b>
<br />
Welcome Guest </div>
<ul class="topmenu">
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<br>
<div class="banner"><p></p></div>
<br class="clear"/>
</div> <!-- header -->
<div class="content">
<br/>
<div class="product-list">
<h2>Shopping Basket</h2>
<br/>
<form action="#" method="POST">
<table>
<tr>
<th>Item No.</th><th>Product</th><th width="40%">Name</th><th>Amount</th><th width="10%">Price</th><th width="10%">Extended</th><th> </th>
</tr>
<tr>
<td> A19000</td>
<td><a href="detail&id=00000019">
<img src="images/167_2835774.scale_20.JPG" alt=" Ambrosia Salad" width="60" height="60" />
</a>
</td>
<td> Ambrosia Salad</td>
<td>Qty: <br /><input type="text" value="1" name="qty[]" class="s0" size="2" /></td>
<td align="right"> 1.90</td>
<td align="right"> 1.90</td>
<td>
<table>
<tr>
<td>Remove</td>
<td><input type="checkbox" name="remove[]" value="00000019" title="Remove" /></td>
</tr>
<tr>
<td>Update</td>
<td><input type="checkbox" name="update[]" value="00000019" title="Update" /></td>
</tr>
</table>
</td>
</tr>
<tr>
<td> B59000</td>
<td><a href="detail&id=00000059">
<img src="images/430_3151480.scale_20.JPG" alt=" Boston Cream Pie" width="60" height="60" />
</a>
</td>
<td> Boston Cream Pie</td>
<td>Qty: <br /><input type="text" value="2" name="qty[]" class="s0" size="2" /></td>
<td> 5.90</td>
<td> 11.80</td>
<td>
<table>
<tr>
<td>Remove</td>
<td><input type="checkbox" name="remove[]" value="00000059" title="Remove" /></td>
</tr>
<tr>
<td>Update</td>
<td><input type="checkbox" name="update[]" value="00000059" title="Update" /></td>
</tr>
</table>
</td>
</tr>
<tr>
<td> C32000</td>
<td><a href="detail&id=00000032">
<img src="images/430_3150132.scale_20.JPG" alt=" Chocolate Fondue" width="60" height="60" />
</a>
</td>
<td> Chocolate Fondue</td>
<td>Qty: <br /><input type="text" value="3" name="qty[]" class="s0" size="2" /></td>
<td> 3.20</td>
<td> 9.60</td>
<td>
<table>
<tr>
<td>Remove</td>
<td><input type="checkbox" name="remove[]" value="00000032" title="Remove" /></td>
</tr>
<tr>
<td>Update</td>
<td><input type="checkbox" name="update[]" value="00000032" title="Update" /></td>
</tr>
</table>
</td>
</tr>
<tr>
<th colspan="5">Total:</th>
<th colspan="2"> 23.30</th>
</tr>
</table>
<br/>
<p align="center">
<input type="submit" name="back" value="Back to Shopping" class="button"/>
<!-- PayPal Buy Now Button -->
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="BUTTON_ID">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
<input type="hidden" name="amount" value="23.30" />
<input type="hidden" name="shipping" value="2.33" />
<input type="hidden" name="tax" value="2.33" />
<input type="hidden" name="tax" value="2.33" />
<input type="hidden" name="return" value="thanks.html" />
</form>
<p>
</form>
</div>
</div><!-- content -->
</div><!-- maincontent -->
<div id="footer">
<div class="footer">
Copyright © 2012 sweetscomplete.com. All rights reserved. <br/>
<a href="home.html">Home</a> | <a href="about.html">About Us</a> | <a href="products.html">Products</a> | <a href="contact.html">Contact Us</a> <br />
<span class="contact">Tel: +44-1234567890
Fax: +44-1234567891
Email:sales@sweetscomplete.com</span>
</div>
</div><!-- footer -->
</div><!-- wrapper -->
</body>
</html>