-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayprocess.php
More file actions
33 lines (26 loc) · 820 Bytes
/
payprocess.php
File metadata and controls
33 lines (26 loc) · 820 Bytes
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
<html>
<head>
<title>Payment Processing</title>
<link rel="stylesheet" href="payprocess.css">
<link rel="icon" type="image/ico" href="paw.png">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito&display=swap" rel="stylesheet">
<script type="text/javascript">
function changef()
{
window.location="paymentprocess1.php";
alert("Payment Successful");
setTimeout(placed,3000);
}
function placed()
{
alert("Order Placed Successfully....");
}
</script>
</head>
<body onload="setTimeout(changef,5000)">
<div id="loader-wrapper">
<div id="loader"></div>
</div>
</body>
</html>