-
Notifications
You must be signed in to change notification settings - Fork 1
/
paymentotp.html
57 lines (57 loc) · 1.63 KB
/
paymentotp.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
<!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="https://www.cricbuzz.com/images/cb_favicon.ico" type="image/x-icon">
<script src="https://kit.fontawesome.com/eba04dea05.js" crossorigin="anonymous"></script>
<title>Payment Page</title>
<style>
#container {
display: flex;
width: 780px;
height: 600px;
margin: auto;
border-radius: 10px;
justify-content: center;
align-items: center;
border-left: 6px solid rgb(72, 141, 221);
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
text-align: center;
}
label{
font-size: large;
font-weight: bolder;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
input {
display: block;
padding: 10px;
margin: auto;
margin-top: 20px;
margin-bottom: 20px;
}
#submitotp {
background-color: rgb(72, 141, 221);
cursor: pointer;
color: white;
border: none;
border-radius: 5px;
padding: 10px;
}
</style>
</head>
<body>
<div id="container">
<!-- <div id="otpbox"> -->
<form action="">
<label for="">Enter OTP</label>
<input type="number" id="transactionOTP" max="9999" min="1000" />
<input type="submit" name="" id="submitotp" />
</form>
<!-- </div> -->
</div>
</body>
</html>
<script src="paymentotp.js"></script>