-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaddressPayment.html
More file actions
63 lines (60 loc) · 2.68 KB
/
addressPayment.html
File metadata and controls
63 lines (60 loc) · 2.68 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
<!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">
<title>Review and Place Order</title>
<link rel="icon" type="image/" href="https://www.netmeds.com/assets/global/apple-touch-icon-48x48.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="CSS/navbar-footer.css">
<link rel="stylesheet" href="CSS/addressPayment.css">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/14e21b1c67.js" crossorigin="anonymous" defer></script>
</head>
<body>
<nav id="nav1"></nav>
<nav id="nav2"></nav>
<h1>Address and Payment.</h1>
<main id="addressPayment">
<section id="add">
<form action="">
<label for="pin">PIN CODE</label>
<input type="text" id="pin" name="pin" required>
<label for="city">CITY</label>
<input type="text" id="city" name="city" required>
<label for="state">STATE</label>
<input type="text" id="state" name="state" required>
<label for="fname">FIRST NAME</label>
<input type="text" id="fname" name="fname" required>
<label for="lname">LAST NAME</label>
<input type="text" id="lname" name="lname" required>
<label for="landmark">LANDMARK</label>
<input type="text" id="landmark" name="landmark" required>
<label for="phone">PHONE NUMBER</label>
<input type="text" id="phone" name="phone" required>
<button>SAVE ADDRESS</button>
</form>
</section>
<section id="pay">
<form action="">
<label for="cnum">CARD NUMBER</label>
<input type="text" id="cnum" name="cnum">
<label for="date">EXPIRY DATE</label>
<input type="date" id="date" name="date">
<label for="cvv">CVV</label>
<input type="text" id="cvv" name="cvv">
<label for="name">NAME ON CARD</label>
<input type="text" id="name" name="name">
<button disabled>MAKE PAYMENT</button>
</form>
</section>
<div id="bottomPara">
</div>
</main>
<footer></footer>
<script src="JS/navbar-footer.js" type="module"></script>
<script src="JS/addressPayment.js" type="module"></script>
</body>
</html>