Commit b2dd8e16 authored by Mark Otto's avatar Mark Otto
Browse files

fix validation of dupe ids

parent 8b8f5d0c
Showing with 3 additions and 3 deletions
+3 -3
...@@ -364,19 +364,19 @@ Be sure to add `.col-form-label` to your `<label>`s as well so they're verticall ...@@ -364,19 +364,19 @@ Be sure to add `.col-form-label` to your `<label>`s as well so they're verticall
<div class="col-sm-10"> <div class="col-sm-10">
<div class="radio"> <div class="radio">
<label> <label>
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked> <input type="radio" name="gridRadios" id="gridRadios1" value="option1" checked>
Option one is this and that&mdash;be sure to include why it's great Option one is this and that&mdash;be sure to include why it's great
</label> </label>
</div> </div>
<div class="radio"> <div class="radio">
<label> <label>
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2"> <input type="radio" name="gridRadios" id="gridRadios1" value="option2">
Option two can be something else and selecting it will deselect option one Option two can be something else and selecting it will deselect option one
</label> </label>
</div> </div>
<div class="radio disabled"> <div class="radio disabled">
<label> <label>
<input type="radio" name="optionsRadios" id="optionsRadios3" value="option3" disabled> <input type="radio" name="gridRadios" id="gridRadios3" value="option3" disabled>
Option three is disabled Option three is disabled
</label> </label>
</div> </div>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment