File size: 3,185 Bytes
8aeb522
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">

<!-- Mirrored from es-teams-database2025.onrender.com/delete.html by HTTrack Website Copier/3.x [XR&CO'2017], Fri, 14 Feb 2025 22:35:17 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Delete Your Account</title>

  <!-- Import Tailwind CSS -->
  <script src="../external.html?link=https://cdn.tailwindcss.com/"></script>

  <!-- Import Google Fonts -->
  <link href="../external.html?link=https://fonts.googleapis.com/css2?family=Inter:wght@400;600&amp;display=swap" rel="stylesheet">

  <style>
    /* Apply the Inter font globally */
    body {
      font-family: 'Inter', sans-serif;
    }

    /* Additional custom animations */
    @keyframes vibrate {
      0% { transform: translateX(-1px) rotate(-1deg); }
      25% { transform: translateX(1px) rotate(1deg); }
      50% { transform: translateX(-1px) rotate(-1deg); }
      75% { transform: translateX(1px) rotate(1deg); }
      100% { transform: translateX(0); }
    }

    .vibrating {
      animation: vibrate 0.2s infinite;
    }

    @keyframes zoom-in-out {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }

    .zooming {
      animation: zoom-in-out 1.5s infinite;
    }

    @keyframes glow {
      0% { text-shadow: 0 0 5px #fff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff; }
      50% { text-shadow: 0 0 10px #fff, 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff; }
      100% { text-shadow: 0 0 5px #fff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff; }
    }

    .neon {
      animation: glow 2s infinite;
    }
  </style>
</head>
<body class="bg-gray-900 flex flex-col justify-center items-center min-h-screen">

  <!-- Title -->
  <h1 class="text-4xl md:text-6xl font-extrabold text-center text-white neon vibrating">
    DELETE YOUR ACCOUNT
  </h1>

  <!-- Buttons -->
  <div class="mt-10 flex space-x-6">
    <!-- Yes Button -->
    <button 
      onclick="deleteAccount()" 
      class="px-8 py-4 bg-red-600 text-white font-bold rounded-md shadow-lg zooming hover:bg-red-700 focus:outline-none focus:ring focus:ring-red-500">
      YES
    </button>

    <!-- No Button -->
    <button 
      onclick="goBack()" 
      class="px-8 py-4 bg-green-600 text-white font-bold rounded-md shadow-lg zooming hover:bg-green-700 focus:outline-none focus:ring focus:ring-green-500">
      NO
    </button>
  </div>

  <script>
    // Function to delete account and clear localStorage
    function deleteAccount() {
      localStorage.clear(); // Clear all saved data
      alert("Account deleted successfully. Logging you out...");
      window.location.href = "index-2.html"; // Redirect to login page
    }

    // Function to navigate back to profile page
    function goBack() {
      window.location.href = "profile-2.html"; // Redirect to profile page
    }
  </script>
</body>

<!-- Mirrored from es-teams-database2025.onrender.com/delete.html by HTTrack Website Copier/3.x [XR&CO'2017], Fri, 14 Feb 2025 22:35:18 GMT -->
</html>