aboutsummaryrefslogtreecommitdiff
path: root/site/content/docs/4.6/examples/floating-labels/index.html
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2021-01-19 18:16:38 +0200
committerGitHub <[email protected]>2021-01-19 18:16:38 +0200
commit6ffb0b48e455430f8a5359ed689ad64c1143fac2 (patch)
tree6262338881c32c3c19e4977152ecd0fca61a341c /site/content/docs/4.6/examples/floating-labels/index.html
parent9d87bd7a30c1874a9c3d60041a4042228753dd0e (diff)
downloadbootstrap-4.6.0.tar.xz
bootstrap-4.6.0.zip
Release v4.6.0. (#32726)v4.6.0
* Bump version to v4.6.0. * Dist
Diffstat (limited to 'site/content/docs/4.6/examples/floating-labels/index.html')
-rw-r--r--site/content/docs/4.6/examples/floating-labels/index.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/site/content/docs/4.6/examples/floating-labels/index.html b/site/content/docs/4.6/examples/floating-labels/index.html
new file mode 100644
index 000000000..7e6201629
--- /dev/null
+++ b/site/content/docs/4.6/examples/floating-labels/index.html
@@ -0,0 +1,33 @@
+---
+layout: examples
+title: Floating labels example
+extra_css:
+ - "floating-labels.css"
+include_js: false
+---
+
+<form class="form-signin">
+ <div class="text-center mb-4">
+ <img class="mb-4" src="/docs/{{< param docs_version >}}/assets/brand/bootstrap-solid.svg" alt="" width="72" height="72">
+ <h1 class="h3 mb-3 font-weight-normal">Floating labels</h1>
+ <p>Build form controls with floating labels via the <code>:placeholder-shown</code> pseudo-element. <a href="https://caniuse.com/css-placeholder-shown">Works in latest Chrome, Safari, Firefox, and IE 10/11 (prefixed).</a></p>
+ </div>
+
+ <div class="form-label-group">
+ <input type="email" id="inputEmail" class="form-control" placeholder="Email address" required autofocus>
+ <label for="inputEmail">Email address</label>
+ </div>
+
+ <div class="form-label-group">
+ <input type="password" id="inputPassword" class="form-control" placeholder="Password" required>
+ <label for="inputPassword">Password</label>
+ </div>
+
+ <div class="checkbox mb-3">
+ <label>
+ <input type="checkbox" value="remember-me"> Remember me
+ </label>
+ </div>
+ <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
+ <p class="mt-5 mb-3 text-muted text-center">&copy; 2017-{{< year >}}</p>
+</form>