"Beautiful and responsive login form"
Bootstrap 4.1.1 Snippet by SamimOnline

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 ---------->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BeautyLogin</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Comfortaa|Lobster&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css">
<!--Coded with love by Mutiullah Samim-->
</head>
<body>
<div class="d-flex justify-content-center align-items-center w-100 h-100">
<div class="card beauty_login">
<div class="card-header">
<div class="logo"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRAHXPluq6GtTRPDIHRv5kJPy86uFjp5sO7hg&usqp=CAU" alt=""></div>
<div class="login_text d-flex flex-row justify-content-center align-items-center">
<span></span>
<span class="text px-1">LOGIN</span>
<span></span>
</div>
<div class="login_with_text">
Login with your username and password or using your social media
</div>
</div>
<div class="card-body">
<div class="social_login_container flex-column align-items-end">
<div class="fb">
<i class="fab fa-facebook-f"></i>
<span>Facebook</span>
</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
html,body{
height: 100%;
width: 100%;
}
body{
overflow-x: hidden;
overflow-y: auto;
font-family: 'Comfortaa', cursive;
padding: 10% 5%;
}
.beauty_login{
max-width: 350px;
-webkit-box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.55);
-moz-box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.55);
box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.55);
border-radius: 20px !important;
border: none !important;
}
.beauty_login .card-header{
display: flex;
flex-direction: column;
align-items: center;
position: relative;
background-image: linear-gradient(to right top, #ff4757, #ff713f, #ff982c, #f5be29, #e0e043) !important;
border-top-right-radius: 20px !important;
border-top-left-radius: 20px !important;
border-bottom: none !important;
}
.beauty_login .card-header .logo{
height: 150px;
width: 150px;
padding: 8px;
border-radius: 50%;
position: absolute;
top: -50px;
background: #ffffff;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
$( ".beauty_login .card-body .social_login_container > div" ).hover(
function() {
$( this ).addClass('is_open');
}, function() {
$( this ).removeClass('is_open');
}
);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: