Spaces:
Running
Running
<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&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> |