aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author719media <[email protected]>2018-09-19 10:18:20 -0700
committerXhmikosR <[email protected]>2018-09-20 09:31:02 +0300
commite1b7404bb8cc6f1c142903fc0917993077a3a070 (patch)
treeca431875582f66d9280841fc25df43f6414b9552
parent4dc5671d1b78547843a68b88caa7b2a9c60f0a72 (diff)
downloadbootstrap-e1b7404bb8cc6f1c142903fc0917993077a3a070.tar.xz
bootstrap-e1b7404bb8cc6f1c142903fc0917993077a3a070.zip
Update forms.md
fix duplicate id attribute
-rw-r--r--site/docs/4.1/components/forms.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/site/docs/4.1/components/forms.md b/site/docs/4.1/components/forms.md
index 41a12daab..6bef38527 100644
--- a/site/docs/4.1/components/forms.md
+++ b/site/docs/4.1/components/forms.md
@@ -1172,13 +1172,13 @@ Custom checkboxes and radios can also be disabled. Add the `disabled` boolean at
{% capture example %}
<div class="custom-control custom-checkbox">
- <input type="checkbox" class="custom-control-input" id="customCheckDisabled" disabled>
- <label class="custom-control-label" for="customCheckDisabled">Check this custom checkbox</label>
+ <input type="checkbox" class="custom-control-input" id="customCheckDisabled1" disabled>
+ <label class="custom-control-label" for="customCheckDisabled1">Check this custom checkbox</label>
</div>
<div class="custom-control custom-radio">
- <input type="radio" id="radio3" name="radioDisabled" id="customRadioDisabled" class="custom-control-input" disabled>
- <label class="custom-control-label" for="customRadioDisabled">Toggle this custom radio</label>
+ <input type="radio" name="radioDisabled" id="customRadioDisabled2" class="custom-control-input" disabled>
+ <label class="custom-control-label" for="customRadioDisabled2">Toggle this custom radio</label>
</div>
{% endcapture %}
{% include example.html content=example %}