-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder summary.html
83 lines (80 loc) · 3.42 KB
/
order summary.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
<html>
<head>
<title>
Chaat Chamber
</title>
</head>
<link href="https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Kalam:wght@300;400;700&family=Reddit+Mono:wght@200..900&family=Rubik+Doodle+Shadow&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<link rel="stylesheet" href="..\Chaat-Chamber\css\order summary.css">
<body>
<center>
<div class="navbar">
<a href="index.html"><button id="home">
<p style="color: red; display:inline">Chaat</p>
<p style="color: orange; display:inline">Chamber</p>
</button></a>
<a href="about.html"><i class="fa-solid fa-circle-info" id="about"></i></a>
<i class="fa-solid fa-user" id="profile-icon"><p id="profile-dash-usercred"></p></i>
</div>
<div class="profile-dash">
<p id="profile-dash-usercred-mobile"></p>
<table>
<tr>
<td><i class="fa fa-sign-out" id="logout" aria-hidden="true"><p class="profile-buttons-text"
id="logout-button-text">Logout</p></i></td>
</tr>
</table>
</div>
</center>
<center>
<h1>Cart</h1>
</center>
<center>
<div class="orders">
<div class="order-summary">
<h3 id="nameheader">Name</h3>
<h3 id="priceheader">Price</h3>
<h3 id="quantityheader">Quantity</h3>
</div>
<div class="order-list">
</div>
<h4 class="total"></h4>
</div>
</center>
<center>
<div class="details">
<h2>Delivery Details</h2>
<table>
<tr>
<td><label class="label">Full Name:</label><br><input type="text" id="full-name"></td>
</tr>
<tr>
<td><label class="label">Mobile Number:</label><br><input type="text" id="mobile-number"></td>
</tr>
<tr>
<td><label class="label">Address:</label><br><input type="text" id="address"></td>
</tr>
<tr>
<td><label class="label">City:</label><br><input type="text" id="city"></td>
</tr>
<tr>
<td><label class="label">Pin Code:</label><br><input type="text" id="pin-code"></td>
</tr>
</table>
<button id="confirm-button">Confirm</button>
</div>
</center>
</body>
<script src="..\Chaat-Chamber\js\order summary.js"></script>
</html>