Forms

v3.x

Use forms to capture related data from users.

BBootstrap 3.x | Forms


Build Form Here

  • EXAMPLES
  • Input | text
  • Textarea
  • Form Buttons

<form action="process-form.php">

  <div class="form-group">
    <label for="text-field-1">Text Input</label>
    <input name="text-field-1" type="text" class="form-control" id="text-field-1" placeholder="input text here">
  </div>

  <label for="text-area-1">Text Area</label>
  <textarea name="text-area-1" class="form-control" rows="4"></textarea>

  <button type="reset" class="btn btn-default push-down-2">Clear</button>
  <button type="submit" class="btn btn-primary push-down-2">Submit</button>

</form>