Here is the HTML code that has been generated:
<div class="form-group">
<label class="control-label col-md-2" for="IsWebSiteActive">Website Active</label>
<div class="col-md-4">
<label class="checkbox-inline">
<input checked="checked" data-val="true" data-val-required="The IsWebSiteActive field is required." id="IsWebSiteActive" name="IsWebSiteActive" type="checkbox" value="true"><input name="IsWebSiteActive" type="hidden" value="false">
</label>
</div>
</div>
The live link can be accessed here: http://www.bootply.com/rD54mFrKhp
However, the label and checkbox in the form are not aligned properly. What would be the correct approach to align them? I "prefer" to maintain the existing structure and enhance it with some CSS
rather than rearranging the entire form layout.