bootstrap-modal-form

1.0.1 • Public • Published

Bootstrap modal forms are displayed-on-action pop-up forms that are used for gathering data from website visitors, to register or log users.

Check out Bootstrap Modal form Documentation for detailed instructions & even more examples.

Simple modal login

Bootstrap Modal form: Bootstrap 5 Modal form

<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-mdb-toggle="modal" data-mdb-target="#staticBackdrop1">
    Launch modal login form
</button>

<!-- Modal -->
<div class="modal fade" id="staticBackdrop1" tabindex="-1" aria-labelledby="exampleModalLabel1" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <h5 class="modal-title" id="exampleModalLabel1">Sign in</h5>
                <button type="button" class="btn-close" data-mdb-dismiss="modal" aria-label="Close"></button>
            </div>
            <div class="modal-body p-4">
                <form>
                    <!-- Email input -->
                    <div class="form-outline mb-4">
                        <input type="email" id="email1" class="form-control" />
                        <label class="form-label" for="email1">Email address</label>
                    </div>

                    <!-- password input -->
                    <div class="form-outline mb-4">
                        <input type="password" id="password1" class="form-control" />
                        <label class="form-label" for="password1">Password</label>
                    </div>

                    <!-- Submit button -->
                    <button type="submit" class="btn btn-primary btn-block">Login</button>
                </form>
            </div>
        </div>
    </div>
</div>
<!-- Modal -->

How to use?

  1. Download MDB 5 - free UI KIT

  2. Choose your favourite customized component and click on the image

  3. Copy & paste the code into your MDB project

▶️ Subscribe to YouTube channel for web development tutorials & resources

More examples

Bootstrap Simple modal register: Bootstrap 5 Modal form

Bootstrap Simple modal subscription: Bootstrap 5 Modal form

Bootstrap Simple modal contact: Bootstrap 5 Modal form

Bootstrap Modal with avatar: Bootstrap 5 Modal form


More extended Bootstrap documentation

Package Sidebar

Install

npm i bootstrap-modal-form

Weekly Downloads

2

Version

1.0.1

License

ISC

Unpacked Size

6.15 MB

Total Files

362

Last publish

Collaborators

  • piotrgusciora