"Login in a panel"
Bootstrap 3.2.0 Snippet by PrasadPhule

<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.2.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" style="margin-top:30px"> <div class="col-md-4"> <div class="panel panel-default"> <div class="panel-heading"><h3 class="panel-title"><strong>Sign In </strong></h3></div> <div class="panel-body"> <form role="form"> <div class="form-group"> <label for="exampleInputEmail1">Username or Email</label> <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email"> </div> <div class="form-group"> <label for="exampleInputPassword1">Password <a href="/sessions/forgot_password">(forgot password)</a></label> <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password"> </div> <button type="submit" class="btn btn-sm btn-default">Sign in</button> </form> </div> </div> </div> <div class="col-md-4"> <div class="login-panel panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">Sign In</h3> </div> <div class="panel-body"> <form role="form"> <fieldset> <div class="form-group"> <input class="form-control" placeholder="E-mail" name="email" type="email" autofocus=""> </div> <div class="form-group"> <input class="form-control" placeholder="Password" name="password" type="password" value=""> </div> <div class="checkbox"> <label> <input name="remember" type="checkbox" value="Remember Me">Remember Me </label> </div> <!-- Change this to a button or input when using this as a form --> <a href="javascript:;" class="btn btn-sm btn-success">Login</a> </fieldset> </form> </div> </div> </div> <br> <div class="col-md-12"> <div class="modal-dialog" style="margin-bottom:0"> <div class="modal-content"> <div class="panel-heading"> <h3 class="panel-title">Sign In</h3> </div> <div class="panel-body"> <form role="form"> <fieldset> <div class="form-group"> <input class="form-control" placeholder="E-mail" name="email" type="email" autofocus=""> </div> <div class="form-group"> <input class="form-control" placeholder="Password" name="password" type="password" value=""> </div> <div class="checkbox"> <label> <input name="remember" type="checkbox" value="Remember Me">Remember Me </label> </div> <!-- Change this to a button or input when using this as a form --> <a href="javascript:;" class="btn btn-sm btn-success">Login</a> </fieldset> </form> </div> </div> </div> </div> <hr> </div>

Related: See More


Questions / Comments:

Great snippet, good use of built in Bootstrap CSS so it's not necessary to add a bunch of lines to the main.css. Thanks!

Tryforce () - 7 years ago - Reply 0


I thought that I'd just mention that if you use `type="email"` on the Username / email field, you cannot enter a username as in new browsers, you will be asked to enter a valid email address. Just sayin' :)

Connor Gurney () - 9 years ago - Reply 0


What do I need to add to the project ?

ibrahim () - 9 years ago - Reply 0


What do you mean?

maxsurguy () - 9 years ago - Reply 0


Where is CSS?

Maxim Gorokhovich () - 9 years ago - Reply 0


This snippet only requires Bootstrap CSS to be loaded, nothing else. You can get Bootstrap at http://getbootstrap.com. Enjoy!

maxsurguy () - 9 years ago - Reply 0