-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpayment.html
33 lines (30 loc) · 1.04 KB
/
payment.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
<!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>Payment</title>
<link rel="stylesheet" href="./styles/payment.css">
</head>
<body>
<h1>Shipping Address</h1>
<div id="ship">
</div>
<h1>Payment Gateway</h1>
<p>Your Total Items</p>
<h3>Your Total Cart Value is</h3>
<form>
<label for="">Full Name</label>
<input type="text" placeholder="ENTER YOUR FULL NAME"><br>
<label for="">Your Card Number </label><img src="https://www.needsondoor.com/assets/images/payment.png" alt="">
<input type="number" id="cdNum" placeholder="ENTER YOUR CARD NUMBER HERE"><br>
<label for="">date of expiry</label>
<input type="date"><br>
<label for="" >Your CVV</label>
<input type="password" id="cvv" placeholder="CVV">
<input type="submit">
</form>
</body>
<script src="./scripts/payment.js"></script>
</html>