"Stylish Login Panel"
Bootstrap 4.1.1 Snippet by Trends WD

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
<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 rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<section>
<div class="box">
<div class="form">
<h2>Login</h2>
<form action="index.html">
<div class="inputBx">
<input type="text" placeholder="Username" required />
<i class="fa fa-user"></i>
<!-- <img src="" alt="" class="fa fa-user" /> -->
</div>
<div class="inputBx">
<input type="password" placeholder="Password" required />
<i class="fa fa-lock"></i>
<!-- <img src="" alt="" class="fa fa-lock" /> -->
</div>
<label class="remember">
<input type="checkbox" required /> Remebre Me
</label>
<div class="inputBx">
<input type="submit" value="Submit" />
</div>
</form>
<p>Forgot <a href="#">Password</a></p>
<p>Need an <a href="#">Account</a></p>
</div>
</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
@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
section {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(
-30deg,
#03a9f4 0%,
#3a78b7 50%,
#262626 50%,
#607d8b 100%
);
filter: hue-rotate(120deg);
animation: animate 10s linear infinite;
}
@keyframes animate {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
}
.box {
position: relative;
padding: 50px;
width: 360px;
height: 480px;
display: flex;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: