Spaces:
Running
Running
File size: 10,395 Bytes
7c48d8f ac70bc2 |
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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Username Guardian Vault</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<style>
.gradient-bg {
background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}
.glass-card {
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
</style>
</head>
<body class="gradient-bg min-h-screen text-white">
<div id="vanta-bg" class="fixed inset-0 z-0 bg-gray-900"></div>
<div class="relative z-10 container mx-auto px-4 py-16">
<!-- Header -->
<header class="text-center mb-16">
<h1 class="text-5xl font-bold mb-4 tracking-tight">
Username <span class="text-indigo-200">Guardian</span> Vault 🛡️
</h1>
<p class="text-xl text-indigo-100 max-w-2xl mx-auto">
Protect your digital identity with our advanced username monitoring system
</p>
</header>
<!-- Main Section -->
<main>
<div class="glass-card rounded-2xl p-8 max-w-4xl mx-auto shadow-2xl">
<div class="grid md:grid-cols-2 gap-8">
<!-- Search Section -->
<div>
<h2 class="text-2xl font-semibold mb-6 flex items-center">
<i data-feather="search" class="mr-2"></i> Username Checker
</h2>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium mb-2">Username</label>
<div class="relative">
<input type="text"
class="w-full bg-gray-900 bg-opacity-50 border border-gray-700 rounded-lg px-4 py-3 text-white focus:ring-2 focus:ring-indigo-400 focus:border-transparent"
placeholder="Enter username">
<button class="absolute right-2 top-2 p-1 rounded-md hover:bg-gray-700">
<i data-feather="chevron-down"></i>
</button>
</div>
</div>
<div class="grid grid-cols-2 gap-4">
<div>
<label class="block text-sm font-medium mb-2">Length</label>
<select class="w-full bg-gray-900 bg-opacity-50 border border-gray-700 rounded-lg px-4 py-3 text-white focus:ring-2 focus:ring-indigo-400 focus:border-transparent">
<option>2-3 characters</option>
<option>4-6 characters</option>
<option>7+ characters</option>
</select>
</div>
<div>
<label class="block text-sm font-medium mb-2">Platform</label>
<select class="w-full bg-gray-900 bg-opacity-50 border border-gray-700 rounded-lg px-4 py-3 text-white focus:ring-2 focus:ring-indigo-400 focus:border-transparent">
<option>All Platforms</option>
<option>Twitter</option>
<option>Instagram</option>
<option>GitHub</option>
<option>Reddit</option>
</select>
</div>
</div>
<button class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-3 px-4 rounded-lg transition duration-200 flex items-center justify-center">
<i data-feather="shield" class="mr-2"></i> Check Availability
</button>
</div>
</div>
<!-- Results Preview -->
<div>
<h2 class="text-2xl font-semibold mb-6 flex items-center">
<i data-feather="activity" class="mr-2"></i> Quick Results
</h2>
<div class="bg-gray-900 bg-opacity-30 rounded-xl p-4 h-full">
<div class="space-y-3">
<div class="flex justify-between items-center p-3 rounded-lg bg-gray-800 bg-opacity-50">
<div class="flex items-center">
<i data-feather="twitter" class="text-blue-400 mr-2"></i>
<span>Twitter</span>
</div>
<span class="text-green-400 font-medium">Available</span>
</div>
<div class="flex justify-between items-center p-3 rounded-lg bg-gray-800 bg-opacity-50">
<div class="flex items-center">
<i data-feather="instagram" class="text-pink-500 mr-2"></i>
<span>Instagram</span>
</div>
<span class="text-red-400 font-medium">Taken</span>
</div>
<div class="flex justify-between items-center p-3 rounded-lg bg-gray-800 bg-opacity-50">
<div class="flex items-center">
<i data-feather="github" class="text-gray-100 mr-2"></i>
<span>GitHub</span>
</div>
<span class="text-green-400 font-medium">Available</span>
</div>
<div class="flex justify-between items-center p-3 rounded-lg bg-gray-800 bg-opacity-50">
<div class="flex items-center">
<i data-feather="reddit" class="text-orange-500 mr-2"></i>
<span>Reddit</span>
</div>
<span class="text-yellow-400 font-medium">Pending</span>
</div>
</div>
<div class="mt-6">
<button class="w-full bg-transparent border border-indigo-500 text-indigo-300 hover:bg-indigo-900 hover:bg-opacity-30 font-medium py-2 px-4 rounded-lg transition duration-200 flex items-center justify-center">
<i data-feather="download" class="mr-2"></i> Export Full Report
</button>
</div>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div class="mt-20">
<h2 class="text-3xl font-bold text-center mb-12">Advanced Protection Features</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="glass-card p-6 rounded-xl">
<div class="text-indigo-300 mb-4">
<i data-feather="shield" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Non-Intrusive Checks</h3>
<p class="text-gray-300">Our system performs checks without logging in or violating platform TOS, ensuring ethical usage.</p>
</div>
<div class="glass-card p-6 rounded-xl">
<div class="text-indigo-300 mb-4">
<i data-feather="clock" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Continuous Monitoring</h3>
<p class="text-gray-300">Set up alerts for when desired usernames become available or when suspicious activity is detected.</p>
</div>
<div class="glass-card p-6 rounded-xl">
<div class="text-indigo-300 mb-4">
<i data-feather="lock" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Secure Audit Logs</h3>
<p class="text-gray-300">All activities are logged with timestamps and request details for compliance and review purposes.</p>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="mt-24 text-center text-gray-300 text-sm">
<p>© 2023 Username Guardian Vault. All rights reserved.</p>
<p class="mt-2">Built with ethical security in mind. Use responsibly.</p>
</footer>
</div>
<script>
// Initialize Vanta.js net background (lighter alternative)
VANTA.NET({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x5a67d8,
backgroundColor: 0x111827,
points: 12.00,
maxDistance: 22.00,
spacing: 18.00
});
// Initialize feather icons
document.addEventListener('DOMContentLoaded', function() {
feather.replace();
});
</script>
</body>
</html>
|