Search
 
SCRIPT & CODE EXAMPLE
 

C

Form Bootstrap 4

//	<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
/*
	<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
	<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
	<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
*/

<form>
	<div class="form-group">
		<label for=""></label>
		<input type="text" class="form-control" id="" aria-describedby="" placeholder="">
	</div>
	<div class="form-group">
		<label for=""></label>
		<input type="text" class="form-control" id="" aria-describedby="" placeholder="">
	</div>
	<button type="submit" class="btn btn-primary">Submit</button>
</form>
Comment

form bootstrap 4

<form>
  <div class="form-row align-items-center">
    <div class="col-auto">
      <label class="sr-only" for="inlineFormInput">Name</label>
      <input type="text" class="form-control mb-2" id="inlineFormInput" placeholder="Jane Doe">
    </div>
    <div class="col-auto">
      <label class="sr-only" for="inlineFormInputGroup">Username</label>
      <div class="input-group mb-2">
        <div class="input-group-prepend">
          <div class="input-group-text">@</div>
        </div>
        <input type="text" class="form-control" id="inlineFormInputGroup" placeholder="Username">
      </div>
    </div>
    <div class="col-auto">
      <div class="form-check mb-2">
        <input class="form-check-input" type="checkbox" id="autoSizingCheck">
        <label class="form-check-label" for="autoSizingCheck">
          Remember me
        </label>
      </div>
    </div>
    <div class="col-auto">
      <button type="submit" class="btn btn-primary mb-2">Submit</button>
    </div>
  </div>
</form>
Comment

PREVIOUS NEXT
Code Example
C :: bootsrap textbox 
C :: mount cifs 
C :: form controls in bootsrap 
C :: selection sort algorithm in c 
C :: fgets c 
C :: doble puntero en c 
C :: c check if character is a space 
C :: c bits 
C :: variables in c 
C :: how to allocate memory for pointer in c 
C :: mongo connect db 
C :: pop and push shows black screen which needs to be pressed back flutter 
C :: apt-mark remove hold 
C :: iterate through enum in qt 
C :: c strcmp 
C :: c extern 
C :: c add char to char array 
C :: compile multiple c files 
C :: atoi string to int 
C :: c calling a function 
C :: bp result system 
C :: gandhi ashram saharanpur 
C :: C/c drop mime 
C :: While loop output 
C :: C - Type Casting 
C :: libreoffice reference cell in different sheet with sheet name with space 
C :: reading arrays from stdin c 
C :: c "hello world" 
C :: C Why enums are used? 
C :: under 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =