-
Notifications
You must be signed in to change notification settings - Fork 1
/
billing.html
111 lines (110 loc) · 4.92 KB
/
billing.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<title>Checkout</title>
</head>
<body class="bg-billing">
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light pad">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</nav>
</header>
<div class="container col-5">
<a href="index.html"><button>AutoParts</button></a>
<h2>Billing Information</h2>
<h5>Thank you for shopping with us!</h5>
<form id="signup-form" onsubmit="validateForm(event)">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="address">Address:</label>
<input type="text" id="address" name="address" required>
</div>
<div class="form-group">
<label for="city">City:</label>
<input type="text" id="city" name="city" required>
</div>
<div class="form-group">
<label for="zip">Zip Code:</label>
<input type="number" id="zip" name="zip" required>
</div>
<div class="form-group">
<label for="credit-card">Debit Card Number:</label>
<input type="text" id="credit-card" name="credit-card" required>
</div>
<div class="form-group">
<label for="expiry">Expiry Date:</label>
<input type="text" id="expiry" name="expiry" required>
</div>
<div class="form-group">
<label for="cvv">CVV:</label>
<input type="number" id="cvv" name="cvv" required>
</div>
<div class="form-group">
<input type="submit" value="Make payment" class="payment">
</div>
</form>
</div>
<footer class="w-100 py-4 flex-shrink-0">
<div class="container py-4">
<div class="row gy-4 gx-5">
<div class="col-lg-4 col-md-6">
<h5 class="text-white mb-3">Sign up to get 30% off</h5>
<p class="small gray">Get regular updates about our new arrivals, discounts and offers.</p>
<form action="#">
<div class="mb-3">
<input class="form-control border-0 border-bottom input-style rounded-0" type="text" placeholder="Email" aria-label="Email">
<br>
<button class="btn btn-light text-dark rounded-0" type="button">Send</button>
</div>
</form>
</div>
<div class="col-lg-4 col-md-6">
<h5 class="text-white mb-3">Quick links</h5>
<ul class="list-unstyled text-muted">
<li><a href="index.html">Home</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">FAQs</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Return Policy</a></li>
<li><a href="#">Affilliate Program</a></li>
</ul>
</div>
<div class="col-lg-4 col-md-6">
<h5 class="text-white mb-3">Connect With Us</h5>
<ul class="list-unstyled text-muted">
<li><a href="#">Facebook</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">Tumblr</a></li>
<li><a href="#">Pinterest</a></li>
</ul>
</div>
</div>
<hr class="hr-custom-color">
<button class="btn btn-dark text-white rounded-0 custom-button">Autoparts</button>
<p class="text-white force-text-right"> Copyright © 2023 Autoparts. All rights reserved </p>
</div>
</footer>
<style>
.bg-billing {
background-color: gray;
}
</style>
<script src="signUp.js"></script>
</body>
</html>