"Bootstrap Register and Login Form"
Bootstrap 3.0.0 Snippet by Eliasmia

<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 ----------> <section clas="main-container"> <div class="container"> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12"> <div class="header-content text-center"> <h1 class="header-title">Bootstrap Form</h1> <h4 class="header-motto">Bootstrap Register and Login Form</h4> </div> </div> </div> <div class="row"> <div class="col-md-7"> <div class="form-block"> <h2>Register</h2> <div class="form"> <form action="/action_page.php"> <div class="form-group"> <input type="text" class="form-control" placeholder="Enter First Name" name="first-name" required> </div> <div class="form-group"> <input type="text" class="form-control" placeholder="Enter Last Name" name="last-name" required> </div> <div class="form-group"> <input type="email" class="form-control" placeholder="Enter email" name="email" required> </div> <div class="form-group"> <input type="password" class="form-control" placeholder="Enter Password" name="password" required> </div> <div class="form-group"> <input type="password" class="form-control" placeholder="Enter Repeat Password" name="repeat-password" required> </div> <button type="submit" class="btn btn-default custom-btn">Submit</button> </form> </div> </div> </div> <div class="col-md-5"> <div class="form-block"> <h2>Login</h2> <div class="form"> <form action="/action_page.php"> <div class="form-group"> <input type="email" class="form-control" id="email" placeholder="Enter email" name="email"> </div> <div class="form-group"> <input type="password" class="form-control" id="pwd" placeholder="Enter password" name="pwd"> </div> <button type="submit" class="btn btn-default custom-btn">Submit</button> </form> </div> </div> </div> </div> </div> </section>
/*============== sticky-wrapper =============**/ .header-content { padding: 50px 0; } .header-title { color: #88c724; display: block; font-size: 48px; font-weight: 600; line-height: 50px; text-transform: uppercase; } .header-motto { color: #88c724; font-size: 18px; font-weight: 400; line-height: 22px; } .form-block { background: #f9f9f9 none repeat scroll 0 0; border-radius: 1px; box-shadow: 2px 3px 8px #a7a7a7; color: gray; display: block; min-height:460px; overflow: hidden; padding:30px; margin-bottom:20px; } .form-block h2 { border-bottom: 1px solid #88c724; color: #88c724; display: block; font-size: 24px; font-weight: 300; line-height: 28px; margin-bottom: 20px; padding-bottom: 8px; } .form .form-control { border-radius: 0; color: #999; height: 42px; } .form-control:focus { border-color: #88c724; box-shadow: none; } .custom-btn:hover, .custom-btn { background-color: #88c724; border-color: #88c724; color: #fff; font-size: 20px; height: 40px; width: 100%; font-weight: 500; }

Related: See More


Questions / Comments: