-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Remember me" checkbox in Sign In example is horizontally misaligned #13964
Comments
@cvrebert: see this patch and let me know docs/examples/signin/index.html | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/docs/examples/signin/index.html b/docs/examples/signin/index.html
index c9d2293..80ff1c9 100644
--- a/docs/examples/signin/index.html
+++ b/docs/examples/signin/index.html
@@ -36,12 +36,16 @@
<form class="form-signin" role="form">
<h2 class="form-signin-heading">Please sign in</h2>
- <input type="email" class="form-control" placeholder="Email address" required autofocus>
- <input type="password" class="form-control" placeholder="Password" required>
- <label class="checkbox">
- <input type="checkbox" value="remember-me"> Remember me
- </label>
- <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
+ <div class="form-group">
+ <input type="email" class="form-control" placeholder="Email address" required autofocus>
+ <input type="password" class="form-control" placeholder="Password" required>
+ <div class="col-sm-offset-1">
+ <label class="checkbox">
+ <input type="checkbox" value="remember-me"> Remember me
+ </label>
+ </div>
+ <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
+ </div>
</form>
</div> <!-- /container -->
|
Nah, needs a better solution. |
As of 3.2 the "Remember me" checkbox in Sign In example is horizontally misaligned again! |
@MohammadYounes This fix hasn't shipped yet. It will be included in the upcoming version 3.2.1. |
@hnrch02 Thanks, I didn't notice as the issue wasn't re-opened. According to d10c295eef4b599e62baf89358b2043a6ee4b403, now its required to wrap checkboxes inside |
http://getbootstrap.com/examples/signin/
The text was updated successfully, but these errors were encountered: