Inputs

input[type=text]

<input type="text" class="input" />

textarea

<textarea class="input" />

select

<select class="input">
	<option>select</option>
</select>

Checks

<input type="checkbox" class="check" />
<input type="checkbox" class="check" checked disabled />

<input type="radio" class="check" />
<input type="radio" class="check" checked disabled />

Layout

.form-group

<div class="form-group">
	<label for="fg-example-1">Foo label</label>
	<input id="fg-example-1" type="text" class="input" />
</div>

.form-check

<div class="form-check">
	<input id="fc-example-1" type="checkbox" class="check" />
	<label for="fc-example-1">Foo label</label>
</div>

.form-inline

<form class="form-inline">
	<div class="form-check">
		<input id="fi-example-1" type="checkbox" class="check" />
		<label for="fi-example-1">Foo label</label>
	</div>

	<div class="form-group">
		<label for="fi-example-2">Foo label</label>
		<input id="fi-example-2" type="text" class="input" />
	</div>
</div>