WEBLEB
होम
संपादक
लॉग इन करें
Pro
हिंदी
English
Français
Español
Português
Deutsch
Italiano
हिंदी
HTML CSS लॉगिन फॉर्म कोड
1270
bachir123
संपादक में खोलें
अपना कोड प्रकाशित करें
अनुशंसित
11 July 2025
फ़ॉन्ट विस्मयकारी आइकन के साथ CSS टॉगल मेनू
7 July 2023
लॉगिन/रजिस्टर फॉर्म वर्जन 2
23 June 2025
मेटे का एक कोड
HTML
Copy
Modern Login Form
Login
Username
Password
Login
Forgot Password?
Create Account
CSS
Copy
/* General Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Arial', sans-serif; background: linear-gradient(135deg, #6a11cb, #2575fc); display: flex; justify-content: center; align-items: center; height: 100vh; color: #333; } .login-container { background: rgba(255, 255, 255, 0.9); padding: 2rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); width: 100%; max-width: 400px; } .login-box { text-align: center; } h2 { margin-bottom: 1.5rem; font-size: 2rem; color: #333; } .input-group { margin-bottom: 1.5rem; text-align: left; } label { display: block; margin-bottom: 0.5rem; font-weight: bold; color: #555; } input { width: 100%; padding: 0.75rem; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s ease; } input:focus { border-color: #6a11cb; outline: none; } button { width: 100%; padding: 0.75rem; background: #6a11cb; color: white; border: none; border-radius: 8px; font-size: 1rem; cursor: pointer; transition: background 0.3s ease; } button:hover { background: #2575fc; } .extra-links { margin-top: 1.5rem; display: flex; justify-content: space-between; } .extra-links a { color: #6a11cb; text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; } .extra-links a:hover { color: #2575fc; }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */