CAPTCHA Component
A CAPTCHA component styled using Material Design principles and Tailwind CSS, suitable for e-commerce websites, with dark theme support and responsive design.
HTML Code
<div class="flex flex-col items-center justify-center min-h-screen py-6 bg-white dark:bg-gray-800">
<div class="max-w-md w-full p-6 rounded-lg shadow-lg bg-gray-100 dark:bg-gray-900">
<h2 class="text-2xl font-semibold text-gray-700 dark:text-gray-200 text-center">Verification</h2>
<p class="mt-2 text-gray-600 dark:text-gray-400 text-center">Please complete the CAPTCHA to proceed.</p>
<div class="grid grid-cols-2 gap-4 mt-6">
<div class="flex items-center justify-center p-4 border border-gray-300 dark:border-gray-700 rounded-lg">
<img src="https://picsum.photos/100?random" alt="CAPTCHA Image" class="rounded-lg shadow-md" />
</div>
<div class="flex items-center justify-center p-4 border border-gray-300 dark:border-gray-700 rounded-lg">
<img src="https://picsum.photos/100?random" alt="CAPTCHA Image" class="rounded-lg shadow-md" />
</div>
<div class="flex items-center justify-center p-4 border border-gray-300 dark:border-gray-700 rounded-lg">
<img src="https://picsum.photos/100?random" alt="CAPTCHA Image" class="rounded-lg shadow-md" />
</div>
<div class="flex items-center justify-center p-4 border border-gray-300 dark:border-gray-700 rounded-lg">
<img src="https://picsum.photos/100?random" alt="CAPTCHA Image" class="rounded-lg shadow-md" />
</div>
</div>
<div class="my-4">
<label for="captcha-input" class="block text-gray-700 dark:text-gray-200">Type the characters you see</label>
<input id="captcha-input" type="text" class="mt-2 block w-full p-2 border border-gray-300 dark:border-gray-700 rounded-lg shadow-sm focus:outline-none focus:ring-2 focus:ring-blue-500 dark:focus:ring-blue-300" />
</div>
<button class="w-full mt-4 text-white bg-blue-500 hover:bg-blue-600 dark:bg-blue-700 dark:hover:bg-blue-600 font-medium rounded-lg p-2 shadow transition duration-300">Verify</button>
</div>
</div>
Related Components
CAPTCHA Component
A minimalist/flat design CAPTCHA component for portfolio showcasing, responsive with dark mode support.
Retro Vintage CAPTCHA For Social Media
A retro-vintage CAPTCHA component for social media, with vibrant colors, moderate complexity, responsiveness, and dark mode support using Tailwind CSS.
CAPTCHA Component
A CAPTCHA component with a dark mode design using Tailwind CSS. It is responsive and supports dark themes without JavaScript, using only CSS.