Building an Advanced HTML Form with Validation & Inputs.

Abdul MatinAbdul Matin
3 min read

Forms are a crucial part of web applications, allowing users to enter and submit data. In this article, weโ€™ll build a feature-rich HTML form with various input types, validation rules, and best practices.

๐Ÿ“Œ Key Features of Our Form

โœ… Text, Email, and Password Inputs with validation
โœ… Radio Buttons & Checkboxes for selections
โœ… Dropdowns with Categories using <optgroup>
โœ… Textarea for Feedback
โœ… File Upload with Restrictions
โœ… Date & Time Picker
โœ… Range Slider for Experience Level


๐Ÿš€ Complete HTML Form Code

<form action="/submit" method="post">
    <!-- Text Input with required & pattern validation -->
    <div>
        <label for="username">Username (Only letters, 5-15 characters):</label>
        <input type="text" id="username" name="username" placeholder="Enter your username" 
               pattern="[A-Za-z]{5,15}" required>
    </div>

    <!-- Email Input with built-in validation -->
    <div>
        <label for="email">Email:</label>
        <input type="email" id="email" name="email" placeholder="Enter your email" required>
    </div>

    <!-- Password Input with minlength, maxlength, and pattern -->
    <div>
        <label for="password">Password (Min 8 characters, at least 1 number):</label>
        <input type="password" id="password" name="password" pattern="(?=.*\d).{8,}" required>
    </div>

    <!-- Radio Buttons for Gender Selection -->
    <div>
        <label>Gender:</label>
        <input type="radio" id="male" name="gender" value="male" required>
        <label for="male">Male</label>
        <input type="radio" id="female" name="gender" value="female">
        <label for="female">Female</label>
    </div>

    <!-- Checkbox for Subscription -->
    <div>
        <input type="checkbox" id="subscribe" name="subscribe" value="yes">
        <label for="subscribe">Subscribe to newsletter</label>
    </div>

    <!-- Dropdown Selection with Optgroup -->
    <div>
        <label for="courses">Choose a Course:</label>
        <select name="courses" id="courses" required>
            <optgroup label="Frontend">
                <option value="html">HTML & CSS</option>
                <option value="javascript">JavaScript</option>
            </optgroup>
            <optgroup label="Backend">
                <option value="nodejs">Node.js</option>
                <option value="python">Python</option>
            </optgroup>
        </select>
    </div>

    <!-- Textarea for Comments -->
    <div>
        <label for="comment">Your Comments:</label>
        <textarea id="comment" name="comment" rows="4" cols="50" placeholder="Enter your feedback..."></textarea>
    </div>

    <!-- File Upload Input -->
    <div>
        <label for="resume">Upload Resume (PDF only, max 2MB):</label>
        <input type="file" id="resume" name="resume" accept=".pdf" required>
    </div>

    <!-- Date & Time Picker -->
    <div>
        <label for="dob">Date of Birth:</label>
        <input type="date" id="dob" name="dob" required>
    </div>

    <div>
        <label for="appointment">Preferred Interview Time:</label>
        <input type="datetime-local" id="appointment" name="appointment">
    </div>

    <!-- Range Slider for Experience Level -->
    <div>
        <label for="experience">Experience Level (0-10 years):</label>
        <input type="range" id="experience" name="experience" min="0" max="10" value="2">
    </div>

    <!-- Hidden Field (Can be used for tracking purposes) -->
    <input type="hidden" name="form_id" value="web-dev-application">

    <!-- Submit & Reset Buttons -->
    <div>
        <button type="submit">Submit</button>
        <button type="reset">Reset</button>
    </div>
</form>

Code output :

Visit my github to access full source code

๐Ÿ”ฅ Key Takeaways

๐Ÿ”น Always validate input fields to enhance security and user experience.
๐Ÿ”น Use pattern attributes for regex-based validation (e.g., username, password).
๐Ÿ”น Utilize radio buttons, checkboxes, and dropdowns to enhance selection usability.
๐Ÿ”น Ensure file upload restrictions are enforced for security.
๐Ÿ”น Allow date pickers and range sliders to improve user interaction.

This form structure is great for login pages, registration forms, job applications, and feedback sections.

๐Ÿ’ฌ What additional features would you add to this form? Drop your thoughts in the comments! ๐Ÿš€

0
Subscribe to my newsletter

Read articles from Abdul Matin directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Abdul Matin
Abdul Matin

I am Abdul Matin. I specialize in JavaScript, React, Node.js, MongoDB, and Full-Stack Web Development. Every day, I document my learning journey, breaking down industry-level concepts into real-world applications. Key Technologies I Work With: JavaScript (ES6+) | TypeScript React.js | Next.js Node.js | Express.js MongoDB | PostgreSQL REST APIs | GraphQL Web Performance Optimization | Security Best Practices.