DEV Community

Cover image for Tailwind Forms Templates
Keep Coding
Keep Coding

Posted on

Tailwind Forms Templates

Responsive forms built with Tailwind. Examples and usage guidelines for form control styles, layout options, and custom components for creating a wide variety of forms.


Installation

Quick Start

In order to start using Tailwind simply download our starter.

DOWNLOAD ZIP STARTER

Tailwind Elements does not change or add any CSS to the already one from TailwindCSS.

You can directly copy our components into your Tailwind design and they will work straight away.

In some dynamic components (like dropdowns or modals) we add Font Awesome icons and custom JavaScript. However, they do not require any additional installation, all the necessary code is always included in the example and copied to any Tailwind project - it will work.


MDB GO


Customization

Basic example
HTML
<!-- Required form plugin -->
<link href="https://cdn.jsdelivr.net/npm/@tailwindcss/custom-forms@0.2.1/dist/custom-forms.css" rel="stylesheet">

<div class="p-4 shadow-md rounded-md text-left" style="max-width: 400px;">
  <label class="block">
    <span class="text-gray-700">Name</span>
    <input class="form-input mt-1 block w-full" placeholder="Jane Doe">
  </label>

  <div class="mt-4">
    <span class="text-gray-700">Account Type</span>
    <div class="mt-2">
      <label class="inline-flex items-center">
        <input type="radio" class="form-radio" name="accountType" value="personal">
        <span class="ml-2">Personal</span>
      </label>
      <label class="inline-flex items-center ml-6">
        <input type="radio" class="form-radio" name="accountType" value="busines">
        <span class="ml-2">Business</span>
      </label>
    </div>
  </div>

  <label class="block mt-4">
    <span class="text-gray-700">Requested Limit</span>
    <select class="form-select mt-1 block w-full">
      <option>$1,000</option>
      <option>$5,000</option>
      <option>$10,000</option>
      <option>$25,000</option>
    </select>
  </label>

  <div class="flex mt-6">
    <label class="flex items-center">
      <input type="checkbox" class="form-checkbox">
      <span class="ml-2">I agree to the <span class="underline">privacy policy</span></span>
    </label>
  </div>
</div>
Enter fullscreen mode Exit fullscreen mode

You can see more customization examples on the πŸ“„ Forms Templates documentation page


Crucial Resources

Here are the resources that we have prepared to help you work with this component:

  1. Read πŸ“„ Forms Templates documentation page <-- start here
  2. In to get the most out of your project, you should also get acquainted with other Forms options related to Forms Templates. See the section below to find the list of them.
  3. After finishing the project you can publish it with CLI in order to receive πŸ’½ Free hosting (beta)

Related Forms options & features


Additional resources

Learn web development with our learning roadmap:
πŸŽ“ Start Learning

Join our mailing list & receive exclusive resources for developers
🎁 Get gifts

Join our private FB group for inspiration & community experience
πŸ‘¨β€πŸ‘©β€πŸ‘§β€πŸ‘¦ Ask to join

Support creation of open-source packages with a STAR on GitHub
GitHub stars

Top comments (0)