I\'m trying to implement validation by Bootstrap and I\'ve pasted the following sample on my page:
It appears the validation changes again in the final release version of Bootstrap 4: http://getbootstrap.com/docs/4.0/components/forms/#validation.
It becomes more complicated than I thought.
Custom style client side validation is recommended:
was-validated
..valid-feedback
or .invalid-feedback
. For server-side validation:
was-validated
class on the
tag..is-valid
or .is-invalid
on the input control..invalid-feedback
or .valid-feedback
for the feedback message.