I am trying to activate a check using Bootstrap , and I pasted a follownig sample in my page.
<div class="form-group has-success">
<label class="form-control-label" for="inputSuccess1">Input with success</label>
<input type="text" class="form-control form-control-success" id="inputSuccess1">
<div class="form-control-feedback">Success! You've done it.</div>
<small class="form-text text-muted">Example help text that remains unchanged.</small>
</div>
I see that the appearance of the input control has changed (it is a little rounded and much more aesthetic) , but it still does not show a green border, as seen on the page linked to. The Bootstrap sample I am referencing is listed as follows.
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" />
Trying googlearch problems, I only come to examples related to the official site, where I got my sample from, so help me a bit. I have a script illustrating the problem .
What can I do? What am I missing?
user1675891