JezK
Edit File: account-deletion.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Account Deletion Request</title> <style> body { margin: 0; padding: 0; font-family: Arial, Helvetica, sans-serif; background: #f5f6fa; color: #333; } .container { max-width: 720px; margin: 40px auto; background: #ffffff; padding: 30px; border-radius: 10px; box-shadow: 0 8px 25px rgba(0,0,0,0.08); } h1 { text-align: center; color: #111; margin-bottom: 20px; } h2 { color: #222; margin-top: 25px; } p, li { line-height: 1.6; font-size: 15px; } ul { padding-left: 20px; } .email-box { background: #f1f2f6; border-left: 5px solid #000; padding: 15px; margin: 20px 0; font-size: 16px; font-weight: bold; text-align: center; } .note { background: #fff3cd; padding: 15px; border-radius: 6px; border: 1px solid #ffeeba; margin-top: 20px; font-size: 14px; } footer { text-align: center; margin-top: 30px; font-size: 13px; color: #777; } </style> </head> <body> <div class="container"> <h1>Account Deletion Request</h1> <p> We respect your privacy and give you full control over your personal data. If you wish to delete your account permanently, please follow the instructions below. </p> <h2>How to Request Account Deletion</h2> <p> To request account deletion, send an email to the address below: </p> <div class="email-box"> 📧 sumitproff@gmail.com </div> <h2>Email Details</h2> <ul> <li><strong>Subject:</strong> Account Deletion Request</li> <li><strong>Registered Email ID / Phone Number</strong></li> <li><strong>App Name</strong> (if applicable)</li> <li><strong>Reason for deletion</strong> (optional)</li> </ul> <h2>What Happens Next</h2> <p> After receiving your request, we will verify your identity for security purposes. Once verified, your account and associated data will be permanently deleted. This process may take up to <strong>7 working days</strong>. </p> <h2>Data That Will Be Deleted</h2> <ul> <li>User profile information</li> <li>Login credentials</li> <li>App activity and usage data</li> <li>Subscription details (if any)</li> </ul> <div class="note"> <strong>Important:</strong> Once your account is deleted, it cannot be recovered. </div> <footer> © 2025 | All Rights Reserved </footer> </div> </body> </html>