@SudhuCodes — A project contributor on SudhuCodes platform.
TailwindCSS — This project belongs to the tailwindcss category.
7/30/2025 — Uploaded to the SudhuCodes project library.
Download free project assets built using tailwindcss. This open-source project is part of the SudhuCodes initiative to support developers and learners.
1<!DOCTYPE html>2<!-- ------Code with SudhuCodes------ -->3<html lang="en">4<head>5 <meta charset="UTF-8">6 <meta name="viewport" content="width=device-width, initial-scale=1.0">7 <title>SudhuCodes - Dark Mode Signup Form Design using TailwindCSS</title>8 <script src="https://cdn.tailwindcss.com"></script>9 <script src="https://kit.fontawesome.com/c58add7555.js" crossorigin="anonymous"></script>10</head>11<body class="min-h-screen flex items-center justify-center bg-gray-900">1213 <div class="w-[360px] px-6 py-8 bg-gray-800 rounded-lg shadow-lg">14 <h1 class="text-3xl text-center font-semibold text-white pb-6">Sign Up</h1>1516 <div class="flex flex-col mb-4">17 <label for="email" class="text-gray-300 mb-2">Email</label>18 <input id="email" type="email" placeholder="Enter your email" class="bg-gray-700 text-white p-3 rounded outline-none focus:ring-1 focus:ring-indigo-500">19 </div>2021 <div class="flex flex-col mb-4">22 <label for="password" class="text-gray-300 mb-2">Password</label>23 <input id="password" type="password" placeholder="Enter your password" class="bg-gray-700 text-white p-3 rounded outline-none focus:ring-1 focus:ring-indigo-500">24 </div>2526 <div class="flex flex-col mb-6">27 <label for="confirmPassword" class="text-gray-300 mb-2">Confirm Password</label>28 <input id="confirmPassword" type="password" placeholder="Confirm your password" class="bg-gray-700 text-white p-3 rounded outline-none focus:ring-1 focus:ring-indigo-500">29 </div>3031 <button class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-semibold p-3 rounded transition-colors">Create New Account</button>3233 <div class="text-center mt-6">34 <p class="text-gray-400">Already have an account?35 <a href="#" class="text-indigo-400 hover:text-indigo-500 underline">Login here</a>36 </p>37 </div>38 </div>3940</body>41</html>
You're free to use this code for your personal or educational projects. If you use it publicly, consider giving credit to @SudhuCodes.
Want more beginner-friendly and open-source projects like this one? Browse the full library on the SudhuCodes homepage.
Have suggestions or improvements? Contact us or contribute on GitHub.