"Nav Bar with Popup Sign in"
Bootstrap 3.0.0 Snippet by BhaumikPatel

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <div class="col-md-12"> <nav class="navbar navbar-default" role="navigation"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="http://www.jquery2dotnet.com">Brand</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li class="active"><a href="http://www.jquery2dotnet.com">Home</a></li> <li><a href="http://www.jquery2dotnet.com">About Us</a></li> <li class="dropdown"> <a href="http://www.jquery2dotnet.com" class="dropdown-toggle" data-toggle="dropdown">Pages <b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="http://www.jquery2dotnet.com">Action</a></li> <li><a href="http://www.jquery2dotnet.com">Another action</a></li> <li><a href="http://www.jquery2dotnet.com">Something else here</a></li> <li class="divider"></li> <li><a href="http://www.jquery2dotnet.com">Separated link</a></li> <li class="divider"></li> <li><a href="http://www.jquery2dotnet.com">One more separated link</a></li> </ul> </li> </ul> <form class="navbar-form navbar-left" role="search"> <div class="form-group"> <input type="text" class="form-control" placeholder="Search"> </div> <button type="submit" class="btn btn-default">Submit</button> </form> <ul class="nav navbar-nav navbar-right"> <li><a href="http://www.jquery2dotnet.com">Sign Up</a></li> <li class="dropdown"> <a href="http://www.jquery2dotnet.com" class="dropdown-toggle" data-toggle="dropdown">Sign in <b class="caret"></b></a> <ul class="dropdown-menu" style="padding: 15px;min-width: 250px;"> <li> <div class="row"> <div class="col-md-12"> <form class="form" role="form" method="post" action="login" accept-charset="UTF-8" id="login-nav"> <div class="form-group"> <label class="sr-only" for="exampleInputEmail2">Email address</label> <input type="email" class="form-control" id="exampleInputEmail2" placeholder="Email address" required> </div> <div class="form-group"> <label class="sr-only" for="exampleInputPassword2">Password</label> <input type="password" class="form-control" id="exampleInputPassword2" placeholder="Password" required> </div> <div class="checkbox"> <label> <input type="checkbox"> Remember me </label> </div> <div class="form-group"> <button type="submit" class="btn btn-success btn-block">Sign in</button> </div> </form> </div> </div> </li> <li class="divider"></li> <li> <input class="btn btn-primary btn-block" type="button" id="sign-in-google" value="Sign In with Google"> <input class="btn btn-primary btn-block" type="button" id="sign-in-twitter" value="Sign In with Twitter"> </li> </ul> </li> </ul> </div> <!-- /.navbar-collapse --> </nav> </div> </div> </div>
body { margin-top:30px; } #login-nav input { margin-bottom: 15px; }
$(document).ready(function(){ //Handles menu drop down $('.dropdown-menu').find('form').click(function (e) { e.stopPropagation(); }); });

Related: See More


Questions / Comments:

how to download this??

Auba Meyeng () - 7 years ago - Reply 0


O botão "sign in" não mostra o formulário de login

Marcelo Moreira () - 8 years ago - Reply 0


does not work in IE 9

Luis Fernando Mangia () - 9 years ago - Reply 0


Doesn't work ?

webbeur () - 9 years ago - Reply 0


I have problem on Google chrome. I hover on "Sign in " button and after that login form visible.

Mohammad Ashabi () - 9 years ago - Reply 0


Even better with JSF, can use partial update/logon to modify the sign in form thus not needing the propagation stopper in javascript :)

John Redwood () - 9 years ago - Reply 0


This doesn't work consistently for me unless I add this to the javascript $(document).ready - $('.dropdown-toggle').dropdown();

James O'Brien () - 10 years ago - Reply 0


I'm trying to use this with the Social Buttons (http://lipis.github.io/boot..., but the CSS is all screwed up. Anybody else having this problem. Check out www.mywebwishlist.com for an example.

Drew () - 10 years ago - Reply 0


it seems putting it in the navbar messes things up. You'll need to adjust the color and padding for the buttons that are in .nav class.

maxsurguy () - 10 years ago - Reply 0


This snippet is not compatible with ie8 or less. I dont know about ie9+. Not even with the css3mediaqueires.js loaded.

mike () - 10 years ago - Reply 0


Hi Bhaumik, Thanks for making this available to us. Was wondering if you have any idea on how to make this look modal, even though it is not. I will like to focus all user attention on the login screen and fade everything else until that is done. would appreciate any help in getting that done.

otomori () - 10 years ago - Reply 0


So I'm trying to incorporate this into my Rails 4 application but the drop down does't seem to work. When I click on the Sign in button, the drop down doesn't appear. I appended the CSS to my custom.css.scss file and I added the JS to application.js. Is there something I'm doing wrong?

anirudhgm () - 10 years ago - Reply 0


Try adding this to the JS $(document).ready
$('.dropdown-toggle').dropdown();

James O'Brien () - 10 years ago - Reply 0


nnmm,nmn

nnbm () - 7 years ago - Reply 0


Did you add bootstrap.js in javascripts folder??

Djessy Menard () - 10 years ago - Reply 0


Can someone create a Drop-up menu for the footer?

Mounssif () - 10 years ago - Reply 0


I did one, snippet is awaiting moderation. :)

Alex () - 10 years ago - Reply 0


Thank you Bhaumik! :)

Alex () - 10 years ago - Reply 0