"Untitled"
Bootstrap 4.1.1 Snippet by Ryancodes

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <form class="form-horizontal"> <fieldset> <!-- Form Name --> <legend>Book a Flight</legend> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="First Name">First Name</label> <div class="col-md-4"> <input id="First Name" name="First Name" type="text" placeholder="First Name" class="form-control input-md" required=""> <span class="help-block">Please type your legal first name</span> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Last Name">Last Name</label> <div class="col-md-4"> <input id="Last Name" name="Last Name" type="text" placeholder="Last Name" class="form-control input-md" required=""> <span class="help-block">Please type your legal last name</span> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Email">Email</label> <div class="col-md-4"> <input id="Email" name="Email" type="text" placeholder="example@example.com" class="form-control input-md" required=""> <span class="help-block">Please type a valid email address</span> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Departure Date">Departure Date</label> <div class="col-md-4"> <input id="Departure Date" name="Departure Date" type="text" placeholder="MM/DD/YY" class="form-control input-md" required=""> <span class="help-block">Please type the date that you would like to book the flight for</span> </div> </div> <!-- Button Drop Down --> <div class="form-group"> <label class="col-md-4 control-label" for="Departure time">Departure Time</label> <div class="col-md-4"> <div class="input-group"> <input id="Departure time" name="Departure time" class="form-control" placeholder="0:00" type="text" required=""> <div class="input-group-btn"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> AM/PM <span class="caret"></span> </button> <ul class="dropdown-menu pull-right"> <li><a href="#">AM</a></li> <li><a href="#">PM</a></li> </ul> </div> </div> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Departure">Departure Airport</label> <div class="col-md-4"> <input id="Departure" name="Departure" type="text" placeholder="e.g. OAK or BWI" class="form-control input-md" required=""> <span class="help-block">Please list the three digit airport code that you would like to depart from</span> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Destination">Destination</label> <div class="col-md-4"> <input id="Destination" name="Destination" type="text" placeholder="e.g. OAK or BWI" class="form-control input-md" required=""> <span class="help-block">Please list the three digit airport code that you would like to arrive at</span> </div> </div> <!-- Button --> <div class="form-group"> <label class="col-md-4 control-label" for="Submit"></label> <div class="col-md-4"> <button id="Submit" name="Submit" class="btn btn-primary">Submit </button> </div> </div> </fieldset> </form>

Related: See More


Questions / Comments: