diff options
| author | Florian Lacreuse <[email protected]> | 2020-12-14 13:33:20 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-12-14 14:33:20 +0200 |
| commit | fe3658672c9549dc8c68c1e8db384c4e444cee88 (patch) | |
| tree | 31984525a7bb31172c87ff024ef8166fb755fd40 | |
| parent | ebce95dc60572ba1f7d65e9a8b5b2a4c0c8c4336 (diff) | |
| download | bootstrap-fe3658672c9549dc8c68c1e8db384c4e444cee88.tar.xz bootstrap-fe3658672c9549dc8c68c1e8db384c4e444cee88.zip | |
Add missing `has-validation` in checkout examples (#32464)
| -rw-r--r-- | site/content/docs/5.0/examples/checkout-rtl/index.html | 2 | ||||
| -rw-r--r-- | site/content/docs/5.0/examples/checkout/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/site/content/docs/5.0/examples/checkout-rtl/index.html b/site/content/docs/5.0/examples/checkout-rtl/index.html index c4a60443d..5839cb112 100644 --- a/site/content/docs/5.0/examples/checkout-rtl/index.html +++ b/site/content/docs/5.0/examples/checkout-rtl/index.html @@ -87,7 +87,7 @@ body_class: "bg-light" <div class="col-12"> <label for="username" class="form-label">اسم المستخدم</label> - <div class="input-group"> + <div class="input-group has-validation"> <span class="input-group-text">@</span> <input type="text" class="form-control" id="username" placeholder="اسم المستخدم" required> <div class="invalid-feedback"> diff --git a/site/content/docs/5.0/examples/checkout/index.html b/site/content/docs/5.0/examples/checkout/index.html index a8bf348b2..fc9cfb6f8 100644 --- a/site/content/docs/5.0/examples/checkout/index.html +++ b/site/content/docs/5.0/examples/checkout/index.html @@ -86,7 +86,7 @@ body_class: "bg-light" <div class="col-12"> <label for="username" class="form-label">Username</label> - <div class="input-group"> + <div class="input-group has-validation"> <span class="input-group-text">@</span> <input type="text" class="form-control" id="username" placeholder="Username" required> <div class="invalid-feedback"> |
