"nice signup form"
Bootstrap 4.1.1 Snippet by vara24

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 rel="stylesheet" href="https://cdn.lineicons.com/1.0.0/LineIcons.min.css">
<link href="https://fonts.googleapis.com/css?family=Poppins" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.css" />
<div class="container-fluid bg">
<div class="container">
<div class="row">
<div class="col-md-8 ">
<div class="row">
<div class="col-sm-3 col-md-2 col-lg-2">
<i class="lni lni-enter" aria-hidden="true"></i>
</div>
<div class="col-sm-9 col-md-10 col-lg-10">
<h1 class="heading">Register</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
</div>
<div class="row">
<div class="col-sm-3 col-md-2 col-lg-2">
<i class="lni lni-user" aria-hidden="true"></i>
</div>
<div class="col-sm-9 col-md-10 col-lg-10">
<h1 class="heading">Make Your Profile</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
</div>
<div class="row">
<div class="col-sm-3 col-md-2 col-lg-2">
<i class="lni lni-cloud-upload" aria-hidden="true"></i>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
html,body{
color: #fff;
}
.lni{
font-size: 64px;
}
.bg{
background: linear-gradient(to right, #3c96ff 0%, #2dfbff 100%) !important;
}
.regform{
box-shadow: 0px 8px 9px 0px rgba(69, 69, 69, 0.25);
}
.sign{
color: #000;
}
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
$("#signup").click(function() {
$("#first").fadeOut("fast", function() {
$("#second").fadeIn("fast");
});
});
$("#signin").click(function() {
$("#second").fadeOut("fast", function() {
$("#first").fadeIn("fast");
});
});
/* $(function() {
$("form[name='login']").validate({
rules: {
email: {
required: true,
email: true
},
password: {
required: true,
}
},
messages: {
email: "Please enter a valid email address",
password: {
required: "Please enter password",
}
},
submitHandler: function(form) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: