-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
97 lines (88 loc) · 3.58 KB
/
Copy pathcheckout.html
File metadata and controls
97 lines (88 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Checkout - E-RESTAURANT</title>
<link rel="stylesheet" href="checkout.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>
<body>
<!-- Header Section -->
<section id="header">
<a href="index.html"><img src="Aldenaire.png" width="150" height="150" alt="logo"></a>
<div>
<ul id="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="cart.html"><i class="fas fa-shopping-cart"></i> Cart</a></li>
</ul>
</div>
</section>
<!-- Checkout Section -->
<section id="checkout-container">
<h1>Checkout</h1>
<div id="cart-summary">
<h2>Your Cart Items</h2>
<div id="cart-items-summary">
<!-- Cart items will be dynamically inserted here -->
</div>
<div id="cart-total-summary">
<h3>Total: ₹<span id="checkout-total">0</span></h3>
</div>
</div>
<!-- Order Form Section -->
<div id="order-form">
<h2>Enter Your Details</h2>
<form id="order-form">
<div class="form-group">
<label for="name">Full Name *</label>
<input type="text" id="name" required>
</div>
<div class="form-group">
<label for="email">Email Address *</label>
<input type="email" id="email" required>
</div>
<div class="form-group">
<label for="address">Shipping Address *</label>
<textarea id="address" required></textarea>
</div>
<div class="form-group">
<label for="phone">Phone Number *</label>
<input type="text" id="phone" required>
</div>
<div class="form-group">
<label for="comments">Additional Comments</label>
<textarea id="comments"></textarea>
</div>
<button type="submit" class="btn">Place Order</button>
</form>
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="footer-container">
<div class="footer-section about">
<h3>About Us</h3>
<p>We offer freshly prepared, flavorful meals with the finest ingredients. Whether you're in the mood for a quick snack or a multi-course meal, we've got something for everyone.</p>
</div>
<div class="footer-section contact">
<h3>Contact Info</h3>
<p>Visit us at: IIIT NR, Naya Raipur, Chhattisgarh, India</p>
<p>Phone: +91 xxxxxxxxxx</p>
</div>
<div class="footer-section social">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="#" class="social-icon instagram"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-icon twitter"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 E-RESTAURANT. All Rights Reserved.</p>
<p><a href="#">Privacy Policy</a> | <a href="#">Terms & Conditions</a></p>
</div>
</footer>
<script src="checkout.js"></script>
</body>
</html>