-
-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f375de2
commit 6b6bd9d
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!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 Using TrackWapp</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
height: 100vh; | ||
background-color: #f4f4f4; | ||
} | ||
.container { | ||
text-align: center; | ||
background: #fff; | ||
padding: 20px; | ||
border-radius: 8px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
} | ||
iframe { | ||
width: 100%; | ||
height: 600px; | ||
border: none; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Thank You for Using TrackWapp</h1> | ||
<p>We hope it helped you monitor your WhatsApp activity effectively.</p> | ||
<h2>We Value Your Feedback</h2> | ||
<p>Please take a moment to fill out our Google Form below and let us know about your experience.</p> | ||
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSfZVdwHNvLIFaOx9V27uKuQhTSqXgy3SvB_CNzh4UD03KqBVg/viewform?embedded=true">Loading…</iframe> | ||
<h2>Stay Connected</h2> | ||
<p>Stay tuned for more updates and features. If you have any questions or need support, feel free to reach out to us through our <a href="https://github.com/rizwansoaib/whatsapp-monitor/issues">GitHub Issues</a> page.</p> | ||
<p>Thank you once again for using TrackWapp!</p> | ||
<p>Best regards,<br>The TrackWapp Team</p> | ||
</div> | ||
</body> | ||
</html> |