-
Notifications
You must be signed in to change notification settings - Fork 1
/
payments.html
220 lines (212 loc) · 10.8 KB
/
payments.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="Hair salon templates for mens hair cut service provider.">
<meta name="keywords" content="hair salon website templates free download, html5 template, free responsive website templates, website layout,html5 website templates, template for website design, beauty HTML5 templates, cosmetics website templates free download">
<title>Payment Gateway</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.png">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i%7cMontserrat:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Font Awesome -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- Style -->
<link href="css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="header">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<a href="index.html"><img src="images/logo.png" alt=""></a>
</div>
<div class="col-lg-8 col-md-4 col-sm-12 col-xs-12">
<div class="navigation">
<div id="navigation">
<ul>
<li class="active"><a href="index.html" title="Home">Home</a></li>
<li><a href="services.html" title="Services">Services</a></li>
<li class="active"><a href="payments.html" title="Payments">Payments</a></li>
<li><a href="contact.html" title="Contact Us">Contact</a> </li>
<li><a href="About.html" title="About">About</a></li>
<li><a href="developer.html" title="Developer">Developer</a> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="page-header">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="page-caption">
<h2 class="page-title">Payments</h2>
<div class="page-breadcrumb">
<ol class="breadcrumb">
<li><a href="index.html">Home</a></li>
<li class="active">Payment Portal</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="content">
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-8 col-sm-12 col-xs-12">
<h1>Payment Methods</h1>
<p class="lead"> Hair Salon Website for you Modern Beauty Salon comes complete with everything you need for your hair. Take a look for more <a href="http://vigneshgbe.unaux.com/">about the Developer.</a><br>We hope that this will help you to gain your valuable time.</p>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<div class="widget widget-call-to-action">
<h1 class="widget-title">Get Discounts</h1>
<p class="text-white"> Book faster and Avoid the queve. The best Hair styling shop.</p>
<a href="#" class="btn btn-primary btn-lg">Make Appointment</a>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="service-block">
<h1>Google Pay</h1>
<!-- Button to redirect to Google Pay -->
<button class="btn btn-default" onclick="redirectToGooglePay()">Pay with Google Pay</button>
<script>
function redirectToGooglePay() {
// Replace XXXXXXXXXX with the actual phone number
var phoneNumber = "XXXXXXXXXX";
// Construct the Google Pay URL with the provided phone number
var googlePayUrl = "https://pay.google.com?phone=" + phoneNumber;
// Redirect to the Google Pay URL
window.location.href = googlePayUrl;
}
</script>
</div>
<br>
<div >
<h1>PhonePe Pay</h1>
<!-- Button to redirect to PhonePe -->
<button class="btn btn-default" onclick="redirectToPhonePe()">Pay with PhonePe</button>
<script>
function redirectToPhonePe() {
// Replace XXXXXXXXXX with the actual phone number
var phoneNumber = "XXXXXXXXXX";
// Construct the PhonePe URL with the provided phone number
var phonePeUrl = "https://phonepe.com/send?phone=" + phoneNumber;
// Redirect to the PhonePe URL
window.location.href = phonePeUrl;
}
</script>
</div>
<br>
<br>
<div>
<h1>Paytm Pay</h1>
<!-- Button to redirect to Paytm -->
<button class="btn btn-default" onclick="redirectToPaytm()">Pay with Paytm</button>
<script>
function redirectToPaytm() {
// Replace XXXXXXXXXX with the actual phone number or Paytm username
var recipient = "XXXXXXXXXX";
// Construct the Paytm URL with the provided recipient and amount
var paytmUrl = "https://paytm.me/" + recipient + "/" + amount;
// Redirect to the Paytm URL
window.location.href = paytmUrl;
}
</script>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<!-- footer-->
<div class="container">
<div class="footer-block">
<!-- footer block -->
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="footer-widget">
<h2 class="widget-title">Salon Address</h2>
<ul class="listnone contact">
<li><i class="fa fa-map-marker"></i> 4958 Norman Street Los Angeles, CA 90042 </li>
<li><i class="fa fa-phone"></i> +00 (800) 123-4567</li>
<li><i class="fa fa-fax"></i> +00 (123) 456 7890</li>
<li><i class="fa fa-envelope-o"></i> [email protected]</li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="footer-widget footer-social">
<!-- social block -->
<h2 class="widget-title">Social Feed</h2>
<ul class="listnone">
<li>
<a href="#"> <i class="fa fa-facebook"></i> Facebook </a>
</li>
<li><a href="#"><i class="fa fa-twitter"></i> Twitter</a></li>
<li><a href="#"><i class="fa fa-google-plus"></i> Google Plus</a></li>
<li><a href="#"><i class="fa fa-linkedin"></i> Linked In</a></li>
<li>
<a href="#"> <i class="fa fa-youtube"></i>Youtube</a>
</li>
</ul>
</div>
<!-- /.social block -->
</div>
<div class="col-lg-5 col-md-5 col-sm-12 col-xs-12">
<div class="footer-widget widget-newsletter">
<!-- newsletter block -->
<h2 class="widget-title">Newsletters</h2>
<p>Enter your email address to receive new patient information and other useful information right to your inbox.</p>
<div class="input-group">
<input type="text" class="form-control" placeholder="Email Address">
<span class="input-group-btn">
<button class="btn btn-default" type="button">Subscribe</button>
</span>
</div>
<!-- /input-group -->
</div>
<!-- newsletter block -->
</div>
</div>
<div class="tiny-footer">
<!-- tiny footer block -->
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="copyright-content">
<p>© VIGNESH G 2024 | all rights reserved</p>
</div>
</div>
</div>
</div>
<!-- /.tiny footer block -->
</div>
<!-- /.footer block -->
</div>
</div>
<!-- /.footer-->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/menumaker.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/sticky-header.js"></script>
</body>
</html>