"Login page"
Bootstrap 4.0.0 Snippet by SammuMufeed

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.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="sidenav"> <div class="login-main-text"> <h2>Application<br> Login Page</h2> <p>Login or register from here to access.</p> </div> </div> <div class="main"> <div class="col-md-6 col-sm-12"> <div class="login-form"> <form> <div class="form-group"> <label>User Name</label> <input type="text" class="form-control" placeholder="User Name"> </div> <div class="form-group"> <label>Password</label> <input type="password" class="form-control" placeholder="Password"> </div> <button type="submit" class="btn btn-black">Login</button> <button type="submit" class="btn btn-secondary">Register</button> </form> </div> </div> </div>
body { font-family: "Lato", sans-serif; } .main-head{ height: 150px; background: #FFF; } .sidenav { height: 100%; background-color: #000; overflow-x: hidden; padding-top: 20px; } .main { padding: 0px 10px; } @media screen and (max-height: 450px) { .sidenav {padding-top: 15px;} } @media screen and (max-width: 450px) { .login-form{ margin-top: 10%; } .register-form{ margin-top: 10%; } } @media screen and (min-width: 768px){ .main{ margin-left: 40%; } .sidenav{ width: 40%; position: fixed; z-index: 1; top: 0; left: 0; } .login-form{ margin-top: 80%; } .register-form{ margin-top: 20%; } } .login-main-text{ margin-top: 20%; padding: 60px; color: #fff; } .login-main-text h2{ font-weight: 300; } .btn-black{ background-color: #000 !important; color: #fff; }

Related: See More


Questions / Comments:

Hey there! I want to use this login theme on my Php project. But i can't connect css file to html file each other. I should connect css and php each other but i cant do this. Can you help me pls. Thx!!

berkantcnr (-8) - 3 years ago - Reply -8


thanks, simple and it looks pretty cool

sorrow112 () - 2 years ago - Reply 0


thanks, simple and looks pretty cool

sorrow112 () - 2 years ago - Reply 0


Hey there! I want to use this login theme on my Php project. But i can't connect css file to html file each other. I should connect css and php each other but i cant do this. Can you help me pls. Thx!!

berkantcnr (-8) - 3 years ago - Reply 0


how can we move the form little up?

srajith2001 () - 3 years ago - Reply 0


change in the css:

.login-form{

margin-top: 80%; -> margin-top: xy%;

}

matekaa01 () - 3 years ago - Reply 0