Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Bootstrap 4 Basics (Retired) Building Forms with Bootstrap Form Groups and Form Controls

When I type in the name for the Modal Title or for the form label name, nothing appears on the document. Same as Example

I made sure that it was the same as the example provided in the video

<!-- callout button -->
      <button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#signup">
        Sign Up to be one of the first to receive free access!
      </button>
<!-- Modal -->
      <div class="modal fade" id="signup" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
        <div class="modal-dialog" role="document">
          <div class="modal-content">
            <div class="modal-header">
              <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                <span aria-hidden="true">&times;</span>
              </button>
              <h4 class="modal-title" id="myModalLabel">Sign Up</h4>
            </div>
            <div class="modal-body">
              <!-- registration form -->
              <form>
                <fieldset class="form-group">
                  <label for="name">Name</label>
                  <input type="text" class="form-control" id="name">
                </fieldset>
                <fieldset class="form-group">
                  <label for="mail">Email:</label>
                  <input type="email" class="form-control" id="mail">
                </fieldset>
              </form>
              <!-- registration form -->
              ...
            </div>
          </div>
        </div>
        </div>



      <!-- MODAL WINDOW FORM -->
Javier Alvarado
Javier Alvarado
16,060 Points

Did you solve this problem yet?