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 Success Page</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-indigo-600 flex justify-center items-center min-h-screen p-6 antialiased"> <div class="max-w-2xl w-full bg-white p-16 rounded-[5rem] shadow-[0_64px_128px_-24px_rgba(0,0,0,0.3)] text-center space-y-12 relative overflow-hidden"> <!-- Success Burst --> <div class="absolute top-0 left-1/2 -translate-x-1/2 w-full h-2 bg-gradient-to-r from-emerald-400 via-indigo-500 to-emerald-400"></div> <div class="flex flex-col items-center space-y-6"> <div class="h-24 w-24 bg-emerald-500 rounded-[2.5rem] flex items-center justify-center text-white shadow-2xl shadow-emerald-500/40 rotate-12 hover:rotate-0 transition-transform duration-500"> <svg class="h-12 w-12" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M5 13l4 4L19 7" /></svg> </div> <div> <span class="text-[10px] font-black text-emerald-600 uppercase tracking-[0.4em]">Protocol Success</span> <h1 class="text-5xl font-black text-slate-900 tracking-tighter mt-2">Sync Complete</h1> </div> </div> <div class="space-y-6 max-w-sm mx-auto"> <p class="text-slate-500 text-lg leading-relaxed font-medium">Your manifest has been successfully distributed across the global Vanguard mesh. Node US-East-Apex is now primary.</p> <div class="flex flex-col gap-4"> <button class="w-full py-5 bg-indigo-600 text-white rounded-[2rem] text-xs font-black uppercase tracking-[0.2em] shadow-xl shadow-indigo-600/30 hover:bg-slate-900 transition-all cursor-pointer">Return to Dashboard</button> <button class="w-full py-5 bg-slate-50 text-slate-400 rounded-[2rem] text-xs font-black uppercase tracking-widest border border-slate-100 hover:bg-slate-100 transition-all cursor-pointer">Download Manifest PDF</button> </div> </div> <div class="flex items-center justify-center gap-8 pt-8 border-t border-slate-50"> <div class="text-left"> <p class="text-[9px] font-black text-slate-300 uppercase tracking-widest">Auth Code</p> <p class="text-xs font-bold text-slate-900 font-mono">#VNG-8291-ALPHA</p> </div> <div class="text-left"> <p class="text-[9px] font-black text-slate-300 uppercase tracking-widest">Timestamp</p> <p class="text-xs font-bold text-slate-900">12/03/2026 08:08</p> </div> </div> </div> </body> </html>