-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcheckout.html
109 lines (70 loc) · 3.83 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
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
<!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="shortcut icon" href="assets/images/icon.png" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<title>Tiny Toes | Checkout</title>
<link rel="stylesheet" href="/styles/main.css">
<link rel="stylesheet" href="/styles/checkout.css">
<script src="scripts/checkout.js" type="module" defer></script>
</head>
<body>
<header>
<!-- Header & Navigation -->
<nav id="nav1">
<div>
<a href="#">
<img src="./assets/images/logo.png" alt="" width="200px">
</div>
<div>
<link rel="stylesheet" href="checkout.html">
</div>
<label class="Myaccount" for="My account">My Account</label>
<select name="" onchange='location=this.value'>
<option value=""></option>
<option value="/user/profile.html">My Profile</option>
<option value="/user/orders.html">My Orders</option>
<option value="">Logout</option>
</select>
</nav>
</header>
<main>
<!-- Page Content -->
<div id="Maindiv">
<div id="Formating">
<div id="CreditCard">
<h1 id="heading">CREDIT/DEBIT CARDS</h1>
<form id="PayNow"action="">
<input class="cardno" type="text" maxlength="16" placeholder="Card Number" required>
<input class="nameoncard" type="text" maxlength="25" placeholder="Name on Card" required>
<input class="expiry"type="date" name="" id="" required>
<input class="cvv" type="text" name="" id="" required placeholder="CVV" maxlength="4" >
<button >PAY Now</button>
</form>
</div>
<div id="Upipayment">
<form action=""id="PayNow1">
<h1>UPI PAYMENTS</h1>
<label for="">Please provide valid UPI handle i.e (Virtual Payment Address)</label>
<input class="email" id="inputemail" type="email" required placeholder="Enter your upi" maxlength="40">
<button >PAY NOW</button>
</form>
</div>
<div id="PayTm">
<form action="" id="PayNow2">
<h1>PAYTM WALLET</h1>
<label for="">Link your wallet using mobile no:</label>
<input class="mobileno"type="number" name="" id="" placeholder="Enter mobile no" maxlength="10">
<button >Pay Now</button>
</form>
</div>
</div>
</main>
<footer>
<!-- Footer -->
</footer>
</body>
</html>