-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.html
41 lines (35 loc) · 1.21 KB
/
checkout.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simple Checkout Page</title>
<link rel="stylesheet" href="css/styleCheckout.css" />
</head>
<body>
<header>
<!--Nav-->
<div class="nav container">
<a href="#" class="logo">CHECKOUT </a>
<!--Cart Icons-->
<i class="bx bx-shopping-bag" id="cart-icon"></i>
</div>
</header>
<div class="container-form">
<form id="checkoutForm" onsubmit="return validateForm(event)">
<label for="firstName">First Name:</label>
<input type="text" id="firstName" required />
<label for="lastName">Last Name:</label>
<input type="text" id="lastName" required />
<label for="email">Email:</label>
<input type="email" id="email" required />
<label for="address">Address:</label>
<input type="text" id="address" required />
<label for="creditCard">Credit Card Number:</label>
<input type="text" id="creditCard" required />
<button type="submit">Submit</button>
</form>
</div>
<script src="/JS/checkout.js"></script>
</body>
</html>