-
Notifications
You must be signed in to change notification settings - Fork 0
/
thankyou.html
91 lines (79 loc) · 2.48 KB
/
thankyou.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You for Reporting</title>
<style>
/* Add your CSS styling here */
body {
font-family: sans-serif;
text-align: center;
padding: 50px;
/* Shimmering background */
background: linear-gradient(110deg, #fdfdfd 8%, #f5f5f5 18%, #fdfdfd 33%);
background-size: 200% 100%;
animation: gradient-animation 10s ease infinite;
}
@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
h1 {
font-size: 3em;
margin-bottom: 20px;
color: #007bff;
}
p {
font-size: 1.2em;
margin-bottom: 30px;
color: #333;
}
#acknowledgement { /* Style for the acknowledgement section */
display: none; /* Initially hidden */
margin-top: 20px;
color: #28a745; /* Green for positive message */
}
form {
display: inline-block;
}
input[type="email"] {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin-right: 10px;
}
input[type="submit"] {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Thank You!</h1>
<p>We appreciate you taking the time to report a security issue. Your help is invaluable in keeping our website safe.</p>
<div id="acknowledgement">
<p>If the reported security issue is genuine, a thank you note and acknowledgement will be added here.</p>
</div>
<form action="https://formspree.io/f/mqazvgqy" method="POST">
<input type="email" name="email" placeholder="Your Email (Optional)">
<input type="submit" value="Submit">
</form>
<script>
// You'll need to add logic here (likely server-side) to
// display the acknowledgement if the issue is genuine.
// For now, it's just hidden by default.
</script>
</body>
</html>