Search
 
SCRIPT & CODE EXAMPLE
 

CSS

bootstrap 4 input error

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">

<!--
  Title: bootstrap 4 input error
-->
<!--Go to https://www.w3schools.com/bootstrap4/bootstrap_forms.asp for more info-->
<form action="/action_page.php" class="was-validated">
  <div class="form-group">
    <label for="uname">Username:</label>
    <input type="text" class="form-control" id="uname" placeholder="Enter username" name="uname" required>
    <div class="valid-feedback">Valid.</div>
    <div class="invalid-feedback">Please fill out this field.</div>
  </div>
  <div class="form-group">
    <label for="pwd">Password:</label>
    <input type="password" class="form-control" id="pwd" placeholder="Enter password" name="pswd" required>
    <div class="valid-feedback">Valid.</div>
    <div class="invalid-feedback">Please fill out this field.</div>
  </div>
  <div class="form-group form-check">
    <label class="form-check-label">
      <input class="form-check-input" type="checkbox" name="remember" required> I agree on blabla.
      <div class="valid-feedback">Valid.</div>
      <div class="invalid-feedback">Check this checkbox to continue.</div>
    </label>
  </div>
  <button type="submit" class="btn btn-primary">Submit</button>
</form>
Comment

PREVIOUS NEXT
Code Example
Css :: cursor couleur in css 
Css :: arrow up css 
Css :: can span have width 
Css :: mysqli load result into array 
Css :: rotate keyfreame animation 
Css :: css wrap 
Css :: transition timing functions 
Css :: css hide mark border 
Css :: sql file extension 
Css :: css vendor prefixes 
Css :: css text align center 
Css :: tailwind css responsive table 
Css :: Add Very Subtle Drop Shadow (CSS) To Element (HTML) 
Css :: what does align items center do 
Css :: css all clases which start with col- 
Css :: flickity css 
Css :: is there any property that reset all atributes css div 
Css :: selecting last child css 
Css :: scss how to use a variable in entire angular project 
Css :: red asterix css 
Css :: css fadeout animation 
Css :: how to resize img in css 
Css :: change bg color on hover 
Css :: fonmt family css 
Css :: markdown dont skip space 
Css :: hex codes of bootstrap colours 
Css :: bootstrap table striped change color 
Css :: font stack css 
Css :: how to add pictures in circle html 
Css :: css scale 
ADD CONTENT
Topic
Content
Source link
Name
4+7 =