-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirm.php
More file actions
39 lines (39 loc) · 1.18 KB
/
confirm.php
File metadata and controls
39 lines (39 loc) · 1.18 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment Confirm</title>
<link
href="https://fonts.googleapis.com/css2?family=Bangers&family=Carter+One&family=Nunito+Sans:wght@400;700&display=swap"
rel="stylesheet">
<style>
*{
font-family:'Nunito Sans', sans-serif;
}
.payment-success {
background: #fff;
border-radius: 10px;
box-shadow: 0 5px 10px rgba(0,0,0,.1);
color: black;
padding: 20px;
margin: 5% auto;
width: 30%;
text-align: center;
}
</style>
<script>
setTimeout(function() {
window.location.href = 'index.php';
}, 10000);
</script>
</head>
<body>
<div class="payment-success">
<img src="assets/images/approved-aproved-confirm-2-svgrepo-com.svg" width="100px" height="100px">
<h2>Payment Successful!</h2>
<p>Thank you, your payment has been successful. A confirmation email has been sent to your mail.</p>
<p>Redirecting to another page.. if not working, <a href="index.php">click here</a></p>
</div>
</body>
</html>