Social Login Component
A retro/vintage social login component designed for e-commerce platforms with a pastel color scheme and dark mode support.
HTML Code
<div class="flex flex-col items-center justify-center min-h-screen bg-white dark:bg-gray-900 p-6">
<div class="bg-pastel-pink rounded-lg shadow-lg p-8 w-80">
<h2 class="text-2xl font-bold text-center text-gray-800 dark:text-white">Welcome Back!</h2>
<p class="text-gray-600 dark:text-gray-400 mb-6 text-center">Log in using your favorite social media account</p>
<div class="flex flex-col space-y-4">
<a href="#" class="flex items-center justify-center bg-blue-400 dark:bg-blue-700 text-white rounded-lg p-2 hover:bg-blue-500 dark:hover:bg-blue-600 transition duration-200 ease-in-out">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="avatar" class="w-8 h-8 rounded-full mr-2">
Login with Facebook
</a>
<a href="#" class="flex items-center justify-center bg-red-400 dark:bg-red-700 text-white rounded-lg p-2 hover:bg-red-500 dark:hover:bg-red-600 transition duration-200 ease-in-out">
<img src="https://randomuser.me/api/portraits/women/1.jpg" alt="avatar" class="w-8 h-8 rounded-full mr-2">
Login with Google
</a>
<a href="#" class="flex items-center justify-center bg-green-400 dark:bg-green-700 text-white rounded-lg p-2 hover:bg-green-500 dark:hover:bg-green-600 transition duration-200 ease-in-out">
<img src="https://randomuser.me/api/portraits/men/2.jpg" alt="avatar" class="w-8 h-8 rounded-full mr-2">
Login with Twitter
</a>
</div>
<div class="mt-4 text-center">
<p class="text-gray-600 dark:text-gray-400">Don't have an account? <a href="#" class="text-blue-400 dark:text-blue-300 hover:underline">Sign up</a></p>
</div>
</div>
</div>
Related Components
Social Login Component
A simple, skeumorphic social login component with complementary colors, suitable for a blog or content site, designed to be responsive and support dark mode.
Retro Social Login Component
A simple, responsive social login component with a retro/vintage 80s/90s aesthetic using a forest/green color palette. Includes dark mode support.
Social Login Component
A complex, responsive social login component designed for dashboards. Utilizes a dark mode UI with a grayscale color scheme. Features social provider buttons, an email/password form, a "Remember me" toggle, and separator with alternate login options. Fully responsive with image illustration and uses Tailwind CSS with dark: prefix for dark theme support. No JavaScript needed.