"New Activity form"
Bootstrap 4.0.0 Snippet by douglance

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/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 ----------> <div class="container"> <div class="row"> <form> <div class="form-group"> <label for="exampleInputEmail1">Title</label> <input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email"> <small id="emailHelp" class="form-text text-muted">Describe this activity</small> </div> <div class="form-group"> <label for="exampleSelect1">Activity</label> <select class="form-control" id="exampleSelect1" placeholder="Matching"> <option>Matching</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> </div> <div class="form-group"> <label for="exampleTextarea">Words</label> <textarea class="form-control" id="exampleTextarea" rows="3" placeholder="Mother, Father, Sister, Brother"></textarea> <small id="emailHelp" class="form-text text-muted">Describe this activity</small> </div> <fieldset class="form-group"> <legend>Languages</legend> <div class="form-check"> <label class="form-check-label"> <input type="checkbox" class="form-check-input" name="optionsRadios" id="optionsRadios1" value="option1" checked> Chinese </label> </div> <div class="form-check"> <label class="form-check-label"> <input type="checkbox" class="form-check-input" name="optionsRadios" id="optionsRadios2" value="option2"> Pinyin </label> </div> <div class="form-check disabled"> <label class="form-check-label"> <input type="checkbox" class="form-check-input" name="optionsRadios" id="optionsRadios3" value="option3"> English </label> </div> </fieldset> <fieldset class="form-group"> <div class="form-check"> <label class="form-check-label"> <input type="checkbox" class="form-check-input" name="optionsRadios" id="optionsRadios1" value="option1" checked> Randomize </label> </div> </fieldset> <button type="submit" class="btn btn-link">Cancel</button> <button type="submit" class="btn btn-primary">Create</button> </form> </div> </div>

Related: See More


Questions / Comments: