PARK PRO
- 100% Black & White (zero color)
- Title: PARK PRO (big, bold, centered)
- Clean Dropdown Selector (Admin / Owner / Client)
- Admin Login Only → [email protected] / Admin@2025
- Owner & Client Full Registration
- Strong Password Rules (8+ chars, upper, lower, number, symbol)
- Email @ validation
- Nepali phone (+977) support
- Single HTML file – just save & open
Perfect minimalist design for your Kathmandu parking system. Copy, save as parkpro.html, done!
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>PARK PRO - Login & Register</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { background: #000; color: #fff; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; } .container { background: #111; padding: 50px 40px; border-radius: 20px; width: 100%; max-width: 420px; box-shadow: 0 0 30px rgba(255, 255, 255, 0.15); border: 2px solid #333; text-align: center; } .title { font-size: 3.2rem; font-weight: 900; letter-spacing: 6px; margin-bottom: 10px; color: #fff; text-shadow: 0 0 20px rgba(255, 255, 255, 0.4); } .subtitle { color: #aaa; font-size: 1rem; margin-bottom: 40px; letter-spacing: 2px; } /* Dropdown Role Selector */ .role-select { margin-bottom: 35px; } .role-select label { display: block; font-size: 1.1rem; margin-bottom: 12px; color: #ddd; font-weight: 600; } select { width: 100%; padding: 18px; background: #000; color: #fff; border: 2px solid #fff; border-radius: 12px; font-size: 1.1rem; font-weight: 600; text-align: center; appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 18px center; background-size: 14px; transition: all 0.3s ease; } select:focus { outline: none; border-color: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2); } /* Form Styling */ .form-group { margin-bottom: 22px; text-align: left; } label { display: block; margin-bottom: 8px; color: #ccc; font-size: 0.95rem; font-weight: 500; } input { width: 100%; padding: 16px; background: #000; border: 2px solid #444; border-radius: 10px; color: #fff; font-size: 1rem; transition: all 0.3s ease; } input:focus { outline: none; border-color: #fff; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15); } .error { color: #ff4444; font-size: 0.85rem; margin-top: 6px; display: none; } .success { color: #00ff88; font-size: 1rem; margin-top: 15px; font-weight: 600; display: none; } button { width: 100%; padding: 18px; background: #fff; color: #000; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: 800; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; } button:hover { background: #eee; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2); } .form-section { display: none; animation: fade 0.5s ease; } .form-section.active { display: block; } @keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .footer-text { margin-top: 30px; color: #666; font-size: 0.9rem; } @media (max-width: 480px) { .container { padding: 40px 25px; } .title { font-size: 2.5rem; } } </style> </head> <body> <div class="container"> <h1 class="title">PARK PRO</h1> <p class="subtitle">Smart Parking System • Kathmandu</p> <!-- Dropdown Role Selector --> <div class="role-select"> <label>CHOOSE YOUR ROLE</label> <select id="roleSelect"> <option value="admin">ADMIN</option> <option value="owner">OWNER</option> <option value="client">CLIENT</option> </select> </div> <!-- Forms --> <div class="form-container"> <!-- Admin Login --> <div id="admin-form" class="form-section active"> <h2 style="margin-bottom:25px; font-size:1.8rem;">ADMIN LOGIN</h2> <div class="form-group"> <label>Email</label> <input type="email" id="admin-email" placeholder="[email protected]"> <div class="error" id="admin-email-error"></div> </div> <div class="form-group"> <label>Password</label> <input type="password" id="admin-password" placeholder="••••••••"> <div class="error" id="admin-pass-error"></div> </div> <button onclick="adminLogin()">LOGIN AS ADMIN</button> <div class="success" id="admin-success"></div> </div> <!-- Owner Register --> <div id="owner-form" class="form-section"> <h2 style="margin-bottom:25px; font-size:1.8rem;">OWNER REGISTER</h2> <div class="form-group"> <label>Full Name</label> <input type="text" id="owner-name" placeholder="Enter your name"> <div class="error" id="owner-name-error"></div> </div> <div class="form-group"> <label>Email</label> <input type="email" id="owner-email" placeholder="[email protected]"> <div class="error" id="owner-email-error"></div> </div> <div class="form-group"> <label>Parking Lot Name</label> <input type="text" id="owner-parking" placeholder="e.g. Thamel Parking"> <div class="error" id="owner-parking-error"></div> </div> <div class="form-group"> <label>Password</label> <input type="password" id="owner-password" placeholder="Min 8 chars + symbol"> <div class="error" id="owner-pass-error"></div> </div> <button onclick="ownerRegister()">REGISTER OWNER</button> <div class="success" id="owner-success"></div> </div> <!-- Client Register --> <div id="client-form" class="form-section"> <h2 style="margin-bottom:25px; font-size:1.8rem;">CLIENT REGISTER</h2> <div class="form-group"> <label>Full Name</label> <input type="text" id="client-name" placeholder="Your name"> <div class="error" id="client-name-error"></div> </div> <div class="form-group"> <label>Email</label> <input type="email" id="client-email" placeholder="[email protected]"> <div class="error" id="client-email-error"></div> </div> <div class="form-group"> <label>Phone</label> <input type="tel" id="client-phone" placeholder="+977 98XXXXXXXX"> <div class="error" id="client-phone-error"></div> </div> <div class="form-group"> <label>Password</label> <input type="password" id="client-password" placeholder="Strong password"> <div class="error" id="client-pass-error"></div> </div> <button onclick="clientRegister()">CREATE ACCOUNT</button> <div class="success" id="client-success"></div> </div> </div> <div class="footer-text"> PARK PRO © 2025 • Kathmandu, Nepal </div> </div> <script> const roleSelect = document.getElementById('roleSelect'); const forms = document.querySelectorAll('.form-section'); roleSelect.addEventListener('change', () => { const role = roleSelect.value; forms.forEach(f => f.classList.remove('active')); document.getElementById(`${role}-form`).classList.add('active'); }); function validateEmail(email) { return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email); } function validatePassword(pw) { return /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[!@#$%^&*])[A-Za-z\d!@#$%^&*]{8,}$/.test(pw); } function clearErrors() { document.querySelectorAll('.error').forEach(e => e.style.display = 'none'); document.querySelectorAll('.success').forEach(s => s.style.display = 'none'); } function adminLogin() { clearErrors(); const email = document.getElementById('admin-email').value.trim(); const pass = document.getElementById('admin-password').value; if (!validateEmail(email)) { document.getElementById('admin-email-error').textContent = 'Valid email required'; document.getElementById('admin-email-error').style.display = 'block'; return; } if (email === '[email protected]' && pass === 'Admin@2025') { document.getElementById('admin-success').textContent = 'Login Successful! Welcome Admin'; document.getElementById('admin-success').style.display = 'block'; } else { document.getElementById('admin-pass-error').textContent = 'Invalid credentials'; document.getElementById('admin-pass-error').style.display = 'block'; } } function ownerRegister() { clearErrors(); const name = document.getElementById('owner-name').value.trim(); const email = document.getElementById('owner-email').value.trim(); const parking = document.getElementById('owner-parking').value.trim(); const pass = document.getElementById('owner-password').value; let ok = true; if (name.length < 3) ok = false, showError('owner-name-error', 'Name too short'); if (!validateEmail(email)) ok = false, showError('owner-email-error', 'Valid email required'); if (parking.length < 4) ok = false, showError('owner-parking-error', 'Enter parking name'); if (!validatePassword(pass)) ok = false, showError('owner-pass-error', '8+ chars, 1 Upper, 1 lower, 1 number, 1 symbol'); if (ok) { document.getElementById('owner-success').textContent = 'Owner Account Created Successfully!'; document.getElementById('owner-success').style.display = 'block'; } } function clientRegister() { clearErrors(); const name = document.getElementById('client-name').value.trim(); const email = document.getElementById('client-email').value.trim(); const phone = document.getElementById('client-phone').value.trim(); const pass = document.getElementById('client-password').value; let ok = true; if (!validateEmail(email)) ok = false, showError('client-email-error', 'Valid email required'); if (!/^\+977[\s-]?[0-9]{10}$/.test(phone.replace(/[\s-]/g, ''))) { ok = false; showError('client-phone-error', 'Use +977 format'); } if (!validatePassword(pass)) ok = false, showError('client-pass-error', 'Password too weak'); if (ok) { document.getElementById('client-success').textContent = 'Welcome to PARK PRO!'; document.getElementById('client-success').style.display = 'block'; } } function showError(id, msg) { const el = document.getElementById(id); el.textContent = msg; el.style.display = 'block'; } // Enter key support document.addEventListener('keypress', e => { if (e.key === 'Enter') { const role = roleSelect.value; if (role === 'admin') adminLogin(); else if (role === 'owner') ownerRegister(); else if (role === 'client') clientRegister(); } }); </script> </body> </html> HTML Login & Registration Forms – Parking / Management Systems & Modern UI Designs (Related to HTML Forms)
Login & Register Form for Park Management System with Dropdown:
This type of HTML form combines login and registration functionality for parking or park management systems. It often uses dropdown menus to switch between login and sign-up options in a single interface, making it more user-friendly and compact for web applications.
Read more: https://macronepal.com/blog/login-and-register-form-for-park-managmet-system-with-dropdown/
Dropdown Login Form for Parking System:
A dropdown login form allows users to select options like user type (admin/user) before logging in. This improves system control and is commonly used in parking management systems to separate different access levels.
Read more: https://macronepal.com/blog/drop-down-login-form-for-parking-system/
Dropdown Login Form for Park Management System:
Similar to parking systems, this login design uses dropdown selection to manage different roles such as staff, admin, or users. It simplifies authentication while improving system organization.
Read more: https://macronepal.com/blog/drop-down-login-form-for-park-managment-system/
Simple Login Form for Park Management System:
A basic login form built using HTML that includes fields like username and password. It is used for secure access to park management dashboards and is easy to design and implement.
Read more: https://macronepal.com/blog/simple-login-form-code-for-park-managment-system/
AI Style Glow Fullscreen Overlay Login Form:
This modern login form uses glowing UI effects and full-screen overlays to create an advanced and attractive design. It enhances user experience using CSS animations and visual effects.
Read more: https://macronepal.com/blog/ai-style-glow-fullscreen-overlay-login-form/
Glassmorphism Login Form:
Glassmorphism is a modern UI design style that uses blur, transparency, and frosted glass effects. It makes login forms look stylish and professional while maintaining readability.
Read more: https://macronepal.com/blog/what-is-glassmorphism-login-form/
Emoji Background Overlay Full Screen Login Form:
This login design uses emoji-based backgrounds with full-screen overlay effects to create a fun and engaging user interface while keeping login functionality simple.
Read more: https://macronepal.com/blog/emoji-background-overlay-full-screen-login-form/
Minimal Center Alignment Fullscreen Overlay Login Form:
A clean and minimal login form centered on the screen. It focuses on simplicity, proper alignment, and distraction-free user experience.
Read more: https://macronepal.com/blog/minimal-center-alignment-fullscreen-overlay-login-form/
Image Blur Focus Fullscreen Overlay Login Form:
This login design uses blurred background images with a focused login box in the center, improving visual depth and user attention on the form.
Read more: https://macronepal.com/blog/image-blur-focus-fullscreen-overlay-login-form/
Geometric Pattern Fullscreen Overlay Login Form:
A creative login form design that uses geometric patterns as backgrounds with overlay effects, giving a modern and structured visual appearance.
Read more: https://macronepal.com/blog/geometric-pattern-fullscreen-overlay-login-form/
