Password Reset Component
A Password Reset component designed with a skeuomorphic style, using earth tones for a natural aesthetic and structured for dashboard applications. It supports dark mode and is responsive.
HTML Code
<div class="max-w-md mx-auto mt-10 p-6 bg-white dark:bg-gray-800 rounded-lg shadow-lg">
<h2 class="text-xl font-semibold text-gray-800 dark:text-gray-200 mb-4">Reset Your Password</h2>
<p class="text-gray-600 dark:text-gray-400 mb-4">Please enter your email address to receive a password reset link.</p>
<form>
<div class="mb-4">
<label for="email" class="block text-gray-700 dark:text-gray-300 mb-2">Email Address</label>
<input type="email" id="email" class="w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-500 dark:bg-gray-700 dark:border-gray-600 dark:focus:ring-green-400" placeholder="[email protected]" required />
</div>
<div class="mb-4">
<label for="new-password" class="block text-gray-700 dark:text-gray-300 mb-2">New Password</label>
<input type="password" id="new-password" class="w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-500 dark:bg-gray-700 dark:border-gray-600 dark:focus:ring-green-400" placeholder="Enter new password" required />
</div>
<div class="mb-4">
<label for="confirm-password" class="block text-gray-700 dark:text-gray-300 mb-2">Confirm Password</label>
<input type="password" id="confirm-password" class="w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-500 dark:bg-gray-700 dark:border-gray-600 dark:focus:ring-green-400" placeholder="Re-enter new password" required />
</div>
<button type="submit" class="w-full py-3 bg-green-500 hover:bg-green-600 text-white rounded-lg transition duration-200">Reset Password</button>
</form>
<div class="mt-4 text-center">
<p class="text-gray-600 dark:text-gray-400">Remembered your password? <a href="#" class="text-green-500 hover:underline">Log in</a></p>
</div>
</div>
Related Components
Password Reset Component
A complex, responsive password reset component with an 'Organic/Nature-inspired' design, 'Sunset/Warm tones' color scheme, suitable for CRM/Business Tools. Includes dark mode support.
Password Reset Component - Glassmorphism Grayscale
A glassmorphism-themed password reset component with a grayscale color scheme, featuring frosted glass-like translucent input fields and buttons. Designed for responsiveness and includes dark mode support. Although the purpose is weather/climate, the password reset form itself is generic.
Password Reset Component
A minimalist password reset component with responsive design and dark theme support using Tailwind CSS.