Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tailwind CSS Password Input With Toggle</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex items-center justify-center min-h-screen p-6 antialiased" x-data="{ show: false }"> <div class="w-full max-w-sm"> <label for="password_toggle" class="block text-[10px] font-black text-slate-400 uppercase tracking-[0.3em] mb-3 ml-2">Security Credential</label> <div class="relative group"> <input :type="show ? 'text' : 'password'" id="password_toggle" placeholder="••••••••" class="w-full h-16 bg-white border-2 border-slate-100 rounded-2xl px-6 font-bold text-slate-900 placeholder-slate-300 focus:outline-none focus:border-indigo-600 transition-all shadow-sm" > <!-- Toggle Button --> <button type="button" @click="show = !show" class="absolute right-6 top-1/2 -translate-y-1/2 text-slate-300 hover:text-indigo-600 transition-colors cursor-pointer group" > <template x-if="!show"> <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"/></svg> </template> <template x-if="show"> <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.875 18.825A10.05 10.05 0 0112 19c-4.478 0-8.268-2.943-9.542-7a10.05 10.05 0 014.13-5.026M21 21l-2-2m-2-2l-2-2m-2-2l-2-2m-2-2L3 3m15.357 5.643a9.959 9.959 0 011.185 3.357M12 5c4.478 0 8.268 2.943 9.542 7a10.059 10.059 0 01-2.012 4.13m-2.13-2.13a3 3 0 11-4.242-4.242"/></svg> </template> </button> </div> </div> <script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script> </body> </html>