-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.php
61 lines (49 loc) · 2.39 KB
/
cart.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
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>The Beatles - Shopping Cart</title>
<meta name="description" content="Nekrofilth" />
<meta name="author" content="Zack Rose" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha/css/bootstrap.min.css">
<link rel="stylesheet" href="css/dropit.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/simplecart.css" />
<script src="js/jquery-2.1.4.js"></script>
<script src="js/dropit.js"></script>
<script src="js/simpleCart.js"></script>
<script src="js/simpleCart-config.js"></script>
</head>
<body>
<?php include_once("analyticstracking.php") ?>
<main>
<?php include("header.php"); ?>
<section class="primary">
<article>
<header>
<h1>Shopping Cart</h1>
</header>
<div class="simpleCart_items"></div>
<h3><a class="emptycart" href="javascript:;" style="color:white;">Empty Cart</a></h3>
<div class="beatlescart">
<h2>
SubTotal: <span id="simpleCart_total" class="simpleCart_total"></span> <br /><br />
Ship To: <select id="shippingLocation"> <option>USA</option><option>World</option> </select><br />
Shipping: <span id="simpleCart_shipping" class="simpleCart_shipping"></span> <br />
<hr />
</h2>
<h1 style="font-size:200%; margin-bottom:1.5em;">
Grand Total: <span id="simpleCart_grandTotal" class="simpleCart_grandTotal"></span>
</h1>
<h2><a href="javascript:;" class="simpleCart_checkout greenlink">Checkout</a></h2>
<h2><img src="images/paypal-whitestroke.png" style="height:1.5em; margin-top:1em;" vertical-align="middle" /></h2>
</div>
<!--a class="greenlink debug_action" href="javascript:;">Debug Button</a-->
</article>
</section>
<footer>
<p>© Michael Jackson 2016</p>
</footer>
</main>
</body>
</html>