Skip to content

Commit

Permalink
Create thankyou.html
Browse files Browse the repository at this point in the history
  • Loading branch information
buildplan authored Sep 23, 2024
1 parent 4494e18 commit a3ccc69
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions thankyou.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!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;
background-color: #f5f5f5;
}

h1 {
font-size: 3em;
margin-bottom: 20px;
color: #007bff;
}

p {
font-size: 1.2em;
margin-bottom: 30px;
color: #333;
}

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>

<form action="mailto:[email protected]" method="post" enctype="text/plain">
<input type="email" name="email" placeholder="Your Email (Optional)">
<input type="submit" value="Submit">
</form>

</body>
</html>

0 comments on commit a3ccc69

Please sign in to comment.