1<form> <!--make sure you add this inside a form-->
2 <div class="form-group"> <!--required to start the form container-->
3 <label for="InputEmail">Email address</label> <!--"for" needs to match the "id" on the next line to bind it-->
4 <input type="email" class="form-control" id="InputEmail" placeholder="Enter email"> <!--id, class, and type are required for it too look right, placeholder will edit the text inside the input box-->
5 <small class="form-text">We'll never share your info.</small> <!--applies small underlining text-->
6 </div>
7 <div class="form-group">
8 <label for="Password">Password</label>
9 <input type="password" class="form-control" id="Password" placeholder="Password">
10 </div>
11 <div class="form-check">
12 <input type="checkbox" class="form-check-input" id="Check">
13 <label class="form-check-label" for="Check">Check out</label>
14 </div>
15 <button type="submit" class="btn btn-primary">Submit</button>
16</form>
17