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

bootstrap 4 form inline

<form class="form-inline py-3">
  <input type="text" class="form-control"/>
  <input type="text" class="form-control"/>
  <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 :: Passing a matrix in a function C 
C :: c zero out array 
C :: bash get load average 
C :: c program that replace vowels in a string with char 
C :: Program to input and print array elements in c 
C :: c in to str 
C :: pointer to function c 
C :: c bubble sort 
C :: Palindrome number in c program 
C :: unsigned char c programming 
C :: mongodb read 
C :: c print 2d array 
C :: faire une facture en langage c 
C :: absolute value of intel intrinsic 
C :: build a linked list in c 
C :: Happy birthday in C 
C :: how to use pointer in c to print char 
C :: int to void* c 
C :: oracle trunc 
C :: boolean operators in c++ 
C :: what is O(N^2) in bubble sort method 
C :: Returns numbers between i and 0 
C :: Highest integer among the four inputs in c 
C :: semicolong after for() loop stackoverflow 
C :: delimter in c 
C :: windows block application au demarrage regegit 
C :: command line arguments to copy paste in c 
C :: python to java translator online 
C :: c ausgabe von variablen 
C :: Odd-Even-inator with function in C 
ADD CONTENT
Topic
Content
Source link
Name
1+2 =