Skip to content

Commit 972b4e8

Browse files
authored
Create upi-intent.html
1 parent 4d097a9 commit 972b4e8

1 file changed

Lines changed: 42 additions & 0 deletions

File tree

upi-intent.html

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>UPI Payment</title>
7+
8+
<style>
9+
body {
10+
display: flex;
11+
justify-content: center;
12+
align-items: center;
13+
height: 100vh;
14+
font-family: Arial, sans-serif;
15+
background: #f5f5f5;
16+
}
17+
18+
.upi-btn {
19+
padding: 16px 24px;
20+
font-size: 16px;
21+
font-weight: bold;
22+
color: #fff;
23+
background-color: #1a73e8;
24+
border: none;
25+
border-radius: 8px;
26+
cursor: pointer;
27+
}
28+
29+
.upi-btn:active {
30+
opacity: 0.8;
31+
}
32+
</style>
33+
</head>
34+
<body>
35+
36+
<button class="upi-btn"
37+
onclick="window.location.href='upi://pay?pa=bs.upiqr@ccavenue&pn=SODEXO%20SVC%20INDIA%20PRIVATE%20LIMITED&tr=315013881828&am=100.0&cu=INR&mc=5968'">
38+
Pay ₹100 via UPI
39+
</button>
40+
41+
</body>
42+
</html>

0 commit comments

Comments
 (0)