-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpurchaseReview.html
124 lines (114 loc) · 3.94 KB
/
purchaseReview.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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<!--CSS Files-->
<link rel="stylesheet" href="home.css">
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js" integrity="sha384-w1Q4orYjBQndcko6MimVbzY0tgp4pWB4lZ7lr30WKz0vr/aWKhXdBNmNb5D92v7s" crossorigin="anonymous"></script>
<title>Home</title>
</head>
<body>
<!-- Navigation Bar-->
<nav class="navbar navbar-light bg-light">
<a href = "home.html" class = "navbar-brand">M2X</a>
<ul class = "navbar-nav">
<li class = "nav-item">
<a href ="#" class = "nav-link"><ion-icon size ="large" name="cart-outline" onclick= "location.href = 'purchaseReview.html'"></ion-icon><span id = "productNum">0</span></a>
</li>
</ul>
</nav>
<!--Product Headers-->
<div class = "container">
<div class = "row">
<div class = "col">
<h5>Remove item</h5>
</div>
<div class = "col">
<h5>Quantity</h5>
</div>
<div class = "col">
<h5>Price</h5>
</div>
<div class = "col">
<h5>Product</h5>
</div>
<div class = "col">
<h5>Total</h5>
</div>
</div>
</div>
<!--Product Table-->
<div class = "container mt-3" id = "productOutput">
</div>
<!--Cost table-->
<div class = "container mt-5">
<div class = "row">
<div class = "col">
<h5></h5>
</div>
<div class = "col">
<h5></h5>
</div>
<div class = "col mt-3">
<h5>Subtotal:</h5>
</div>
<div class = "col mt-3 " >
<h5 id = "subTotal">$0</h5>
</div>
</div>
<div class = "row">
<div class = "col">
<h5></h5>
</div>
<div class = "col">
<h5></h5>
</div>
<div class = "col mt-3">
<h5>Tax:</h5>
</div>
<div class = "col mt-3 " >
<h5 id = "tax">$0</h5>
</div>
</div>
<div class = "row">
<div class = "col">
<h5></h5>
</div>
<div class = "col">
<h5></h5>
</div>
<div class = "col mt-3">
<h5>Total:</h5>
</div>
<div class = "col mt-3 " >
<h5 id = "total">$0</h5>
</div>
</div>
<div class = "row">
<div class = "col">
<h5></h5>
</div>
<div class = "col">
<h5></h5>
</div>
<div class = "col mt-3">
<h5></h5>
</div>
<div class = "col mt-3 " >
<button class = "btn btn-outline-primary btnNext" onclick = "location.href='checkOutForm.html'" id = "btnNext">Next</button>
</div>
</div>
<!--Icons Packages-->
<script type="module" src="https://unpkg.com/ionicons@5.2.3/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.2.3/dist/ionicons/ionicons.js"></script>
<!--Script files-->
<script src = "main.js"></script>
</body>