Bootstrap Validate

The easiest way to validate your Bootstrap Forms. Maybe.

Demo

See for yourself and enter an email address. Well, rather not!

Behind the scenes

Literally a no-brainer!

HTML:

<div class="form-group">
  <label>Enter your E-Mail Address :)</label>
  <input id="docs-demo" class="form-control">
</div>

JavaScript:

<script>bootstrapValidate(document.getElementById('docs-demo'), 'email');</script>

Easy, ain't it?