-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpayment.html
More file actions
65 lines (54 loc) · 1.41 KB
/
payment.html
File metadata and controls
65 lines (54 loc) · 1.41 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
64
65
<!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>Document</title>
<style>
#payment{
height: 400px;
width: 40%;
margin: auto;
margin-top: 200px;
}
p{
text-align: center;
font-size: 30px;
font-weight: bolder;
}
input{
height: 40px;
width: 60%;
margin-bottom: 10px;
margin-left: 40px;
}
.pay{
background-color: blue;
color: aliceblue;
}
</style>
</head>
<body>
<form >
<div id ="payment">
<p>Enter your payment details</p>
<input type="text" placeholder="Name on card"><input type="number" placeholder="Card number"><input type="number" placeholder="Expiry date"><input class="otp" type="password" placeholder="Security code">
<input class=" pay"type="submit" value="click to pay">
</div>
</form>
</body>
</html>
<script>
document.querySelector("form").addEventListener("submit",myFun)
function myFun(){
event.preventDefault();
var x= document.querySelector(".otp").value
if(x=="1234"){
window.location.href="ok.html"
}
else{
window.location.href="not.html"
}
}
</script>