-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirmation.html
91 lines (81 loc) · 2.8 KB
/
confirmation.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
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<script src="https://kit.fontawesome.com/44003bbbd7.js" crossorigin="anonymous"></script>
<title>BibitQ</title>
</head>
<body>
<header>
<a href="index.html">
<img src="/img/logo/bibitq logo putih.png">
</a>
<nav>
<ul class="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="Shop.html">Store</a></li>
<li>
<a href="cart.html">
<i class="fa-solid fa-cart-shopping"></i>
</a>
</li>
<li>
<a href="fiturlogin.html">
<i class="fa-solid fa-user"></i>
</a>
</li>
</ul>
</nav>
</header>
<main class="confirmation">
<h1>Please Fill This Information Below</h1>
<div class="confirmation-text-box">
<div class="confirmation-item">
<h3>Item</h3>
<select>
<option>Spinach</option>
<option>Turnip</option>
<option>Chilli</option>
<option>Tomato</option>
</select>
</div>
<div class="confirmation-name">
<h3>Full Name</h3>
<input type="text">
</div>
<div class="confirmation-address">
<h3>Address</h3>
<input type="text">
</div>
<div class="confirmation-postalcode">
<h3>Postal Code</h3>
<input type="text">
</div>
<div class="confirmation-phone">
<h3>Phone Number</h3>
<input type="text">
</div>
<div class="confirmation-quantity">
<h3>Quantity</h3>
<input type="number" min="1" max="3">
</div>
<div class="confirmation-courier">
<h3>Courier</h3>
<select>
<option>JST</option>
<option>SiFast</option>
<option>Gr*b</option>
<option>GoJ*k</option>
</select>
</div>
<div class="confirmation-submit">
<button><a href="cart.html">Submit</a></button>
</div>
</div>
</main>
</body>
</html>