"Person"
Bootstrap 3.3.0 Snippet by sapyne1

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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 ----------> <form class="form-horizontal"> <fieldset> <!-- Form Name --> <legend>Person</legend> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Name">Name</label> <div class="col-md-4"> <input id="Name" name="Name" type="text" placeholder="" class="form-control input-md"> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="affiliation">Affiliation</label> <div class="col-md-4"> <input id="affiliation" name="affiliation" type="text" placeholder="" class="form-control input-md"> </div> </div> <!-- Multiple Radios --> <div class="form-group"> <label class="col-md-4 control-label" for="status">Research Team Status</label> <div class="col-md-4"> <div class="radio"> <label for="status-0"> <input type="radio" name="status" id="status-0" value="1" checked="checked"> Co-investigator </label> </div> <div class="radio"> <label for="status-1"> <input type="radio" name="status" id="status-1" value="2"> Collaborator </label> </div> <div class="radio"> <label for="status-2"> <input type="radio" name="status" id="status-2" value="3"> Participant </label> </div> <div class="radio"> <label for="status-3"> <input type="radio" name="status" id="status-3" value="4"> Other </label> </div> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="other">If Other, describe:</label> <div class="col-md-4"> <input id="other" name="other" type="text" placeholder="" class="form-control input-md"> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="background">Background Notes</label> <div class="col-md-4"> <input id="background" name="background" type="text" placeholder="" class="form-control input-md"> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="followup">Follow-up Notes</label> <div class="col-md-4"> <input id="followup" name="followup" type="text" placeholder="" class="form-control input-md"> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="general">General Notes</label> <div class="col-md-4"> <input id="general" name="general" type="text" placeholder="" class="form-control input-md"> </div> </div> </fieldset> </form>

Related: See More


Questions / Comments: