Skip to content

Commit f89dd14

Browse files
authored
Update upi-intent.html
1 parent cba30a6 commit f89dd14

File tree

1 file changed

+31
-10
lines changed

1 file changed

+31
-10
lines changed

upi-intent.html

Lines changed: 31 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,44 +3,65 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>UPI Payment</title>
6+
<title>Payment Options</title>
77

88
<style>
99
body {
1010
display: flex;
11+
flex-direction: column;
1112
justify-content: center;
1213
align-items: center;
1314
height: 100vh;
1415
font-family: Arial, sans-serif;
1516
background: #f5f5f5;
1617
}
1718

18-
.upi-btn {
19-
padding: 16px 24px;
19+
.btn {
20+
width: 280px;
21+
padding: 16px;
22+
margin: 10px 0;
2023
font-size: 16px;
2124
font-weight: bold;
2225
color: #fff;
23-
background-color: #1a73e8;
2426
border: none;
2527
border-radius: 8px;
2628
cursor: pointer;
2729
}
2830

29-
.upi-btn:active {
30-
opacity: 0.8;
31+
.upi { background-color: #1a73e8; }
32+
.gpay { background-color: #34a853; }
33+
.cred { background-color: #000000; }
34+
.pluxee { background-color: #e91e63; }
35+
36+
.btn:active {
37+
opacity: 0.85;
3138
}
3239
</style>
3340
</head>
3441
<body>
3542

36-
<button class="upi-btn"
43+
<!-- Any UPI -->
44+
<button class="btn upi"
3745
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'">
3846
Pay ₹100 via UPI
3947
</button>
4048

41-
<button class="upi-btn"
42-
onclick="window.location.href='https://consumers.uat.pluxee.in/consumerloading'">
43-
pluxee
49+
<!-- Google Pay -->
50+
<button class="btn gpay"
51+
onclick="window.location.href='tez://upi/pay?pa=bs.upiqr@ccavenue&pn=SODEXO%20SVC%20INDIA%20PRIVATE%20LIMITED&tr=315013881924&am=100.0&cu=INR&mc=5968'">
52+
Pay with Google Pay
53+
</button>
54+
55+
<!-- CRED -->
56+
<button class="btn cred"
57+
onclick="window.location.href='credpay://upi/pay?pa=bs.upiqr@ccavenue&pn=SODEXO%20SVC%20INDIA%20PRIVATE%20LIMITED&tr=315013882743&am=1.0&cu=INR&mc=5968'">
58+
Pay with CRED
59+
</button>
60+
61+
<!-- Pluxee External Link -->
62+
<button class="btn pluxee"
63+
onclick="window.open('https://consumers.uat.pluxee.in/consumerloading', '_blank')">
64+
Open Pluxee
4465
</button>
4566

4667
</body>

0 commit comments

Comments
 (0)