Forms and Inputs

Use the form-control class to create a form control. This puts a label and input together and gives them some basic styling.

<div class="form-control">
<label for="name">Name</label>
<input type="text" id="name" name="name">
</div>