-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFinalCheckout.html
More file actions
127 lines (112 loc) · 4.28 KB
/
Copy pathFinalCheckout.html
File metadata and controls
127 lines (112 loc) · 4.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Checkout</title>
<link rel="stylesheet" href="index.css"> <!-- Link to CSS file -->
</head>
<body>
<header>
<nav>
<div class="logo"><i class="fa-solid fa-utensils"></i> <p class="Eats">NexusEats</p></div>
<ul class="nav-links">
<li><a href="#Home">Home</a></li>
<li><a href="#About">About</a></li>
<li><a href="#Service">Service</a></li>
<li><a href="#Menu">Menu</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<button class="btn"> Order a meal</button>
</header>
<div class="shopping">
<h1 >Checkout</h1>
</div>
<div class="checkout-container">
<div class="checkout-form">
<h2>Billing Details</h2>
<form id="checkoutForm">
<div class="input-group">
<label for="fullName">Full Name</label>
<input type="text" id="fullName" placeholder="Enter your full name" required>
</div>
<div class="payment-row">
<div class="input-group">
<label for="email">Email</label>
<input type="email" id="email" placeholder="Enter your email" required>
</div>
<div class="input-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" placeholder="Enter your phone number" required>
</div>
</div>
<div class="input-group">
<label for="address">Shipping Address</label>
<textarea id="address" placeholder="Enter your address" required></textarea>
</div>
<h2>Payment Details</h2>
<div class="input-group">
<label for="cardNumber">Card Number</label>
<input type="text" id="cardNumber" placeholder="**** **** **** ****" required>
</div>
<div class="payment-row">
<div class="input-group">
<label for="expiry">Expiry Date</label>
<input type="text" id="expiry" placeholder="MM/YY" required>
</div>
<div class="input-group">
<label for="cvv">CVV</label>
<input type="text" id="cvv" placeholder="***" required>
</div>
</div>
<button type="submit" class="checkout-btn">Complete Payment</button>
</form>
</div>
<div class="order-summary">
<h2>Order Summary</h2>
<table>
<thead>
<tr>
<th>Item</th>
<th>Qty</th>
<th>Price</th>
</tr>
</thead>
<tbody id="order-summary"></tbody>
</table>
<p><strong>Total: <span id="total-price">N0</span></strong></p>
<a href="cartPage.html" class="back-to-cart">← Back to Cart</a>
</div>
</div>
<script src="script.js"></script>
</body>
<footer>
<div class="footer-container">
<div class="footer-logo"><i class="fa-solid fa-utensils"></i> <p class="Eats">NexusEats</p></div>
<div><h4>Opening______</h4>
<p>Monday - Saturday
09AM - 09PM
<br>
Sunday
10AM - 08PM</p>
</div>
<div class="footer-contact">
<h4>Contact Us______</h4>
<p>Email: info@neural Restaurant.com</p>
<p>Phone: +342 456 7890</p>
<p>Address: 123 Health Street, Wellness City, Abuja</p>
</div>
<div class="footer-social">
<h4>Follow Us______</h4>
<a href="#">Facebook</a>
<a href="#">Twitter</a>
<a href="#">Instagram</a>
<a href="#">LinkedIn</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2024. All Rights Reserved.</p>
</div>
</footer>
</html>