-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcancel.html
More file actions
83 lines (75 loc) · 1.74 KB
/
cancel.html
File metadata and controls
83 lines (75 loc) · 1.74 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment Cancelled - WordPress Style Analyzer Pro</title>
<link rel="icon" href="https://intolos.github.io/wordpress-style-analyzer-pro/icon32.png" type="image/png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
background: white;
border-radius: 16px;
padding: 60px 40px;
max-width: 600px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
text-align: center;
}
h1 {
font-size: 2.5rem;
color: #2d3748;
margin-bottom: 20px;
line-height: 1.2;
}
p {
font-size: 1.25rem;
color: #4a5568;
margin-bottom: 15px;
line-height: 1.6;
}
.highlight {
color: #667eea;
font-weight: 600;
}
a {
color: #667eea;
text-decoration: none;
font-weight: 600;
}
a:hover {
text-decoration: underline;
}
.note {
margin-top: 30px;
padding: 20px;
background: #f7fafc;
border-radius: 8px;
font-size: 1.1rem;
color: #2d3748;
}
</style>
</head>
<body>
<div class="container">
<h1>⚠️ Payment Cancelled</h1>
<p>You have not been charged. If this was a mistake, you can try again anytime.</p>
<div class="note">
<p style="margin: 0;">Return to the <span class="highlight">WordPress Style Analyzer Pro</span> Browser Extension and try again.</p>
</div>
<p style="margin-top: 30px; font-size: 1rem;">Need help? <a href="mailto:webbyinsights+wordpress@gmail.com">Contact Us by Email</a>.</p>
</div>
</body>
</html>