Input Fields and Selects

Bootstrap offers consistent styling for various form inputs.

Text and Password

<input type="text" class="form-control" placeholder="Enter text">
<input type="password" class="form-control" placeholder="Password">

Select Menu

<select class="form-select">
  <option selected>Open this select menu</option>
  <option value="1">One</option>
</select>

Checkboxes and Radios

<div class="form-check">
  <input class="form-check-input" type="checkbox" value="" id="check1">
  <label class="form-check-label" for="check1">
    Check this out
  </label>
</div>
← PrevNext →