<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Delete Your Account — CashBloom 🌸</title>
<meta name="description" content="Request deletion of your CashBloom account and associated data.">
<style>
  *{ margin:0; padding:0; box-sizing:border-box; font-family:'Segoe UI', Roboto, -apple-system, sans-serif; }
  body{ background:linear-gradient(160deg, #FFF5FA 0%, #FFE9F4 60%, #FFF0C4 130%); min-height:100vh; color:#3D1230; padding:20px 16px 60px; }
  .wrap{ max-width:520px; margin:0 auto; }
  .logo{ text-align:center; padding:26px 0 10px; }
  .logo .flower{ font-size:52px; display:block; filter:drop-shadow(0 8px 16px rgba(227,25,126,.35)); }
  .logo h1{ font-size:26px; font-weight:800; letter-spacing:-.5px; margin-top:8px; }
  .logo h1 span{ background:linear-gradient(90deg,#E3197E,#F5A623); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
  .logo p{ font-size:13px; font-weight:700; color:#B9739B; margin-top:4px; }
  .card{ background:#fff; border:2px solid #FFD6EA; border-radius:22px; padding:22px 20px; margin-top:16px; box-shadow:0 14px 40px -18px rgba(227,25,126,.25); }
  .card h2{ font-size:17px; font-weight:800; margin-bottom:10px; }
  .card p, .card li{ font-size:13.5px; font-weight:600; color:#7A4B68; line-height:1.7; }
  .card ul{ padding-left:20px; margin:8px 0; }
  .badge{ display:inline-block; background:#FFE9F4; color:#E3197E; border-radius:99px; padding:5px 12px; font-size:11px; font-weight:800; letter-spacing:.6px; margin-bottom:10px; }
  .step{ display:flex; gap:12px; margin:12px 0; }
  .step .n{ flex-shrink:0; width:30px; height:30px; border-radius:50%; background:linear-gradient(135deg,#FF7AB8,#E3197E); color:#fff; font-weight:800; font-size:14px; display:flex; align-items:center; justify-content:center; }
  label{ display:block; font-size:11px; font-weight:800; letter-spacing:1px; color:#B9739B; margin:14px 0 6px; }
  input{ width:100%; height:50px; border:2px solid #FFD6EA; border-radius:14px; padding:0 15px; font-size:16px; font-weight:700; color:#3D1230; outline:none; background:#FFF9FC; }
  input:focus{ border-color:#E3197E; }
  .chk{ display:flex; gap:10px; align-items:flex-start; margin-top:14px; }
  .chk input{ width:20px; height:20px; margin-top:1px; }
  .chk span{ font-size:12.5px; font-weight:600; color:#7A4B68; line-height:1.6; }
  button{ width:100%; height:52px; border:none; border-radius:16px; background:linear-gradient(135deg,#FF7AB8,#E3197E); color:#fff; font-size:15px; font-weight:800; letter-spacing:.5px; cursor:pointer; margin-top:16px; box-shadow:0 12px 28px -10px rgba(227,25,126,.55); }
  button:disabled{ opacity:.5; }
  .alt{ text-align:center; margin-top:12px; }
  .alt a{ color:#E3197E; font-weight:800; font-size:13px; }
  .ok{ display:none; text-align:center; padding:10px 0 4px; }
  .ok .big{ font-size:46px; }
  .ok b{ display:block; font-size:17px; margin-top:8px; }
  .ok p{ margin-top:6px; }
  .foot{ text-align:center; font-size:11.5px; font-weight:700; color:#B9739B; margin-top:22px; line-height:1.8; }
  .foot a{ color:#E3197E; }
  .err{ display:none; color:#D92D5C; font-size:12px; font-weight:800; margin-top:8px; }
</style>
</head>
<body>
<div class="wrap">

  <div class="logo">
    <span class="flower">🌸</span>
    <h1><span>CashBloom</span> — Account Deletion</h1>
    <p>Play · Bloom · Earn</p>
  </div>

  <div class="card">
    <span class="badge">✨ FASTEST WAY — INSIDE THE APP</span>
    <h2>Delete instantly from the app</h2>
    <div class="step"><span class="n">1</span><p>Open <b>CashBloom</b> and go to the <b>Profile</b> tab 👤</p></div>
    <div class="step"><span class="n">2</span><p>Scroll down and tap <b>🗑️ Delete Account</b></p></div>
    <div class="step"><span class="n">3</span><p>Confirm with your PIN — your account &amp; data are removed immediately.</p></div>
  </div>

  <div class="card">
    <span class="badge">📮 OR — REQUEST DELETION HERE</span>
    <h2>Can't access the app? Request below</h2>
    <p>Enter the mobile number you registered with. We will delete your account and associated data within <b>7 working days</b>.</p>

    <form id="delForm">
      <label>REGISTERED MOBILE NUMBER</label>
      <input type="tel" id="mob" inputmode="numeric" maxlength="10" placeholder="10-digit mobile number" required>
      <div class="chk">
        <input type="checkbox" id="agree" required>
        <span>I understand this will permanently delete my CashBloom account, coin balance, garden, pet, achievements and pending reward requests. This cannot be undone.</span>
      </div>
      <div class="err" id="err">Please enter a valid 10-digit mobile number.</div>
      <button type="submit" id="btn">REQUEST ACCOUNT DELETION 🗑️</button>
    </form>

    <div class="ok" id="ok">
      <span class="big">✅</span>
      <b>Request Received!</b>
      <p>Your deletion request has been recorded. Your account and data will be removed within 7 working days. You'll receive no further communication unless verification is needed.</p>
    </div>

    <div class="alt">
      <a href="mailto:spintowinofficel@gmail.com?subject=CashBloom%20Account%20Deletion%20Request&body=Please%20delete%20my%20CashBloom%20account.%0AMy%20registered%20mobile%20number%3A%20">Prefer email? Contact us directly →</a>
    </div>
  </div>

  <div class="card">
    <h2>📦 What gets deleted?</h2>
    <ul>
      <li><b>Account data:</b> your name, mobile number and referral code stored on our server</li>
      <li><b>Reward data:</b> pending/completed withdrawal requests linked to your account</li>
      <li><b>Device data:</b> coins, garden, pet, achievements &amp; settings (stored only on your phone) are wiped when you delete in-app, or automatically removed when you uninstall the app</li>
    </ul>
    <p style="margin-top:8px;"><b>Retention:</b> processed reward records may be retained up to 90 days where required for fraud-prevention and legal compliance, then permanently erased. We do not sell or share your data with third parties.</p>
  </div>

  <p class="foot">
    App: <b>CashBloom</b> · Developer: <b>Mahendra Prusty</b><br>
    Support: <a href="mailto:spintowinofficel@gmail.com">spintowinofficel@gmail.com</a><br>
    This page fulfils the Google Play account &amp; data deletion requirement.
  </p>
</div>

<script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-database-compat.js"></script>
<script>
  firebase.initializeApp({ databaseURL: 'https://super-198.firebaseio.com' });
  var db = firebase.database();
  document.getElementById('delForm').addEventListener('submit', function (e) {
    e.preventDefault();
    var m = document.getElementById('mob').value.replace(/\D/g, '');
    var err = document.getElementById('err');
    if (m.length !== 10) { err.style.display = 'block'; return; }
    err.style.display = 'none';
    var btn = document.getElementById('btn');
    btn.disabled = true; btn.textContent = 'SUBMITTING...';
    db.ref('deletions/' + m).set({ at: Date.now(), via: 'web' })
      .then(function () {
        document.getElementById('delForm').style.display = 'none';
        document.getElementById('ok').style.display = 'block';
      })
      .catch(function () {
        btn.disabled = false; btn.textContent = 'REQUEST ACCOUNT DELETION 🗑️';
        alert('Network error — please try again, or email us: spintowinofficel@gmail.com');
      });
  });
</script>
</body>
</html>

Comments

Popular posts from this blog