Skip to content

Commit

Permalink
Adjust language
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Jan 16, 2018
1 parent c8d9c0e commit 2f4e785
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/4.0/components/forms.md
Original file line number Diff line number Diff line change
Expand Up @@ -780,10 +780,10 @@ When attempting to submit, you'll see the `:invalid` and `:valid` styles applied
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="invalidCheck" required>
<label class="form-check-label" for="invalidCheck">
I agree
Agree to terms and conditions
</label>
<div class="invalid-feedback">
You must agree
You must agree before submitting.
</div>
</div>
</div>
Expand Down Expand Up @@ -857,7 +857,7 @@ While these feedback styles cannot be styled with CSS, you can still customize t
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="invalidCheck2" required>
<label class="form-check-label" for="invalidCheck2">
I agree
Agree to terms and conditions
</label>
</div>
</div>
Expand Down Expand Up @@ -926,10 +926,10 @@ We recommend using client side validation, but in case you require server side,
<div class="form-check">
<input class="form-check-input is-invalid" type="checkbox" value="" id="invalidCheck3" required>
<label class="form-check-label" for="invalidCheck3">
I agree
Agree to terms and conditions
</label>
<div class="invalid-feedback">
You must agree
You must agree before submitting.
</div>
</div>
</div>
Expand Down

0 comments on commit 2f4e785

Please sign in to comment.