-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLastpayment.html
49 lines (41 loc) · 1.53 KB
/
Lastpayment.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
<!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="./Style/lastpayment.css">
<style>
</style>
</head>
<body>
<!-- Payment Page -->
<div id="container">
<div class="card">
<div class="amt">
<p id="amount1"></p>
</div>
<p class="cardNo">CARD NUMBER</p>
<input type="number" name="cardNumber"id="cardNumber"value="" placeholder="Enter 16 digit card number" required />
<p class="cardNo">NAME</p>
<input type="text" name="name" id="name" value="" placeholder="Enter Name" required />
<div class="cardDetails">
<div class="expiry">
<p class="expiry">EXPIRY</p>
<input type="month" name="expiry" value="2024-02" id="expiry" required />
</div>
<div class="box-3">
<p class="cvv">CVV</p>
<input name="number" type="text" id="cvv" value="" placeholder="enter CVV Number" maxlength="3"required/>
</div>
</div>
<div class="submit">
<button type="submit" id="btn">Make Payment</button>
</div>
</div>
</div>
</body>
</html>
<script src="./Script/lastpayment.js">
</script>