-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
82 lines (82 loc) · 3.41 KB
/
checkout.html
File metadata and controls
82 lines (82 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Giftopia - Checkout</title>
<link rel="stylesheet" href="checkout.css">
</head>
<body>
<div class="container">
<aside class="sidebar">
<div class="logo">GIFTOPIA</div>
<nav class="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Trends</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="#">Tournament</a></li>
<li><a href="#">50% Off For 1 Year</a></li>
<li class="placeholder">Placeholder</li>
<li><a href="#">Rewards</a></li>
<li><a href="#">Subscription</a></li>
<li><a href="#">Purchases</a></li>
</ul>
</nav>
<div class="contact">
<p>Contact Us</p>
<p>contact number: 0000</p>
<p>Mail: Giftopia@gmail.com</p>
</div>
<div class="user-account">
<span class="user-icon"></span>
<p>User Account</p>
</div>
</aside>
<main class="main-content">
<header class="header">
<div class="search-bar">
<input type="text" placeholder="Search...">
</div>
<div class="header-icons">
<a href="carts.html"><div class="cart">Cart</div></a>
<div class="wallet">Wallet</div>
<div class="ethes">ETHES</div>
</div>
</header>
<section class="checkout-section">
<h2>Checkout</h2>
<div class="checkout-details">
<div class="billing-info">
<h3>Billing Information</h3>
<form>
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
<label for="address">Address</label>
<input type="text" id="address" name="address" required>
<label for="city">City</label>
<input type="text" id="city" name="city" required>
<label for="zip">ZIP Code</label>
<input type="text" id="zip" name="zip" required>
</form>
</div>
<div class="order-summary" id="order-summary">
<h3>Order Summary</h3>
<ul id="order-list"></ul>
<h3 id="total">Total: 0Rs</h3>
<a href="end.html" class="confirm-btn">Confirm and Pay</a>
</div>
</div>
<div class="qr-code">
<h3>Scan to Pay</h3>
<img src="debuQR.jpg" alt="QR Code">
</div>
<a href="end.html" class="confirm-btn">Confirm and Pay</a>
</section>
</main>
</div>
<script src="checkout.js"></script>
</body>
</html>