"schedule Meeting"
Bootstrap 3.0.0 Snippet by meddy672

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <div class="col-lg-6 col-md-6 col-sm-12 col-lg-offset-3 col-md-offset-3" id="setMeeting" style="padding:10px;"> <div style="margin-bottom:30px;"> <label>Meeting Type</label> <select class="form-control input-lg" id="meetingType"> <option value="">Meeting Type</option> <option value="Online Meeting">Online Meeting</option> <option value="In Person Meeting">In Person Meeting</option> <option value="Over Phone Meeting">Over Phone Meeting</option> </select> </div> <div class="margin-bottom:30px;"> <label>Meeting Time</label> <input class="form-control input-lg" data-format="dddd, MMMM Do YYYY, h:mm p" placeholder="Meeting Date" id="datepicker" name="meetingTime"> </div> <div style="margin-top:30px;"> <label>Meeting Description</label> <textarea class="form-control" rows="3" id="meetingDescription" name="meetingDescription" placeholder="Whats the meeting is about"></textarea> </div> <br><br> <p class="text-center"><button class="btn btn-primary" id="scheduleBtn">Schedule Meeting <i class="fa fa-time"></i></button></p> </div> </div> </div>
$(document).ready(function(){ $( "#datepicker" ).datetimepicker({ format: "dddd, MMMM Do YYYY, h:mm p", sideBySide:true, widgetPositioning: { vertical:'bottom' } }); })

Related: See More


Questions / Comments: