-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
42 lines (42 loc) · 1.58 KB
/
cart.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Cart</title>
<link rel="stylesheet" href="cart.css">
</head>
<body>
<header>
<div>
<a href="customer.html">
<button id="box-arrow" ><strong>←</strong></button>
</a>
</div>
<h1>Your Cart</h1>
</header>
<main>
<div id="cart-items" class="cart-grid"></div>
<p id="total-price">Total Price: Rs.0</p>
<button id="buy-now-button" style="background-color: aquamarine;">Buy Now</button>
<form id="address-form" style="display: none;">
<h3>Enter Address for Delivery</h3>
<label for="full-name">Full Name:</label>
<input type="text" id="full-name" name="full-name" required><br><br>
<label for="address">Address:</label>
<input type="text" id="address" name="address" required><br><br>
<label for="city">City:</label>
<input type="text" id="city" name="city" required><br><br>
<label for="state">State:</label>
<input type="text" id="state" name="state" required><br><br>
<label for="zip-code">Zip Code:</label>
<input type="text" id="zip-code" name="zip-code" required><br><br>
<button type="submit">Confirm Order</button>
</form>
</main>
<footer>
<p>© 2024 Vendor Management System. All rights reserved.</p>
</footer>
<script src="cart.js"></script>
</body>
</html>