"Bootstrap 4 - advanced login"
Bootstrap 4.1.1 Snippet by tantarico

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<section class="wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-lg-4 h-100vh bg-white px-4 d-flex align-items-center">
<div class="mx-5">
<form action="#">
<div class="input-group mb-4">
<input type="text" class="form-control form-search" placeholder="Search for...">
<div class="input-group-append">
<button class="btn btn-outline-danger btn-search" type="button" id="button-addon2">
<i class="fa fa-search"></i>
</button>
</div>
</div>
</form>
<div class="text-center">
<a href="#">
<img width="50" class="rounded-circle" src="http://mundomega.com/image/principal.png">
</a>
<div class="mb-5">
<a href="#">
<div class="h2 text-danger">BOOTLOGIN</div>
</a>
<h1 class="h7">It is a long established fact that a reader
will be distracted by the readable.</h1>
</div>
</div>
<div class="my-5">
<div class="h6 text-center mb-4">We are more than 5987.99 users Register or access with your social networks</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
body {
height: calc(100vh - 0rem);
}
.wrapper {
height: calc(100vh - 0rem);
background-color: #e8e8e8;
}
a, a:hover{
color: #E91E63;
text-decoration: none
}
.h-100vh {
height: calc(100vh - 0rem);
}
.h7{
font-size: 0.87rem;
font-weight: 400;
}
.h8{
font-size: 0.78rem;
font-weight: 400;
}
.mx-6{
margin-left: 4rem;
margin-right: 4rem;
}
.carousel-control-prev, .carousel-control-next{
height: 3rem;
width: 3rem;
border-radius: 50%;
background-color:#f1427d;
margin-top: auto;
margin-bottom: auto
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
(function ($) {
$('.carousel').carousel({
interval: false
})
})(jQuery)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: