-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirmation.html
72 lines (70 loc) · 2.05 KB
/
confirmation.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment Confirmed</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
.header {
background-color: white;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #e0e0e0;
}
.logo img {
height: 30px;
}
.confirmation-container {
display: flex;
justify-content: center;
align-items: center;
height: calc(100vh - 52px); /* Subtracting header height */
}
.confirmation-box {
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 40px;
text-align: center;
max-width: 400px;
}
.checkmark {
color: #4CAF50;
font-size: 64px;
margin-bottom: 20px;
}
.confirmation-title {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
color: #333;
}
.confirmation-message {
font-size: 16px;
color: #666;
margin-bottom: 20px;
}
</style>
</head>
<div class="confirmation-container">
<div class="confirmation-box">
<div class="checkmark">✓</div>
<div class="confirmation-title">Payment Confirmed!</div>
<div class="confirmation-message">Please check your email for more information. Redirecting in 5 seconds...</div>
</div>
</div>
<script>
setTimeout(function() {
window.location.href = 'https://my.a2hosting.com/index.php?rp=/login'; // Replace with your desired URL
}, 5000);
</script>
</body>
</html>