"Fancy Login / Registration form"
Bootstrap 3.3.0 Snippet by sohamamit

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/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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="container">
<div class="row">
<h2>Fancy Login / Registration form</h2>
</div>
</div>
<br>
<br>
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="form-body">
<ul class="nav nav-tabs final-login">
<li class="active"><a data-toggle="tab" href="#sectionA">Sign In</a></li>
<li><a data-toggle="tab" href="#sectionB">Join us!</a></li>
</ul>
<div class="tab-content">
<div id="sectionA" class="tab-pane fade in active">
<div class="innter-form">
<form class="sa-innate-form" method="post">
<label>Email Address</label>
<input type="text" name="username">
<label>Password</label>
<input type="password" name="password">
<button type="submit">Sign In</button>
<a href="">Forgot Password?</a>
</form>
</div>
<div class="social-login">
<p>- - - - - - - - - - - - - Sign In With - - - - - - - - - - - - - </p>
<ul>
<li><a href=""><i class="fa fa-facebook"></i> Facebook</a></li>
<li><a href=""><i class="fa fa-google-plus"></i> Google+</a></li>
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
/* form */
body{
background:#efefef;
}
.form-body{
background:#fff;
padding:20px;
}
.login-form{
background:rgba(255,255,255,0.8);
padding:20px;
border-top:3px solid#3e4043;
}
.innter-form{
padding-top:20px;
}
.final-login li{
width:50%;
}
.nav-tabs {
border-bottom: none !important;
}
.nav-tabs>li{
color:#222 !important;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
color: #fff;
background-color: #d14d42;
border: none !important;
border-bottom-color: transparent;
border-radius:none !important;
}
.nav-tabs>li>a {
margin-right: 2px;
line-height: 1.428571429;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: