"Tab"
Bootstrap 3.3.0 Snippet by bgsrb

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">
<h2>Tabbed</h2><hr/>
<div class="row">
<div class="col-sm-4 col-xs-12">
<div class="panel panel-with-tab panel-login panel-default">
<ul class="nav nav-tabs nav-justified ">
<li role="presentation" class="active"><a href="#Signup" role="tab" data-toggle="tab">Sign up</a></li>
<li class=""><a href="#Signin" role="tab" data-toggle="tab">Sign in</a></li>
</ul>
<div class="panel-body tab-content">
<div class="tab-pane" role="tabpanel" id="Signin">
<form class="">
<div class="form-group">
<label for="SigninEmailaddress">Email address</label>
<input type="email" class="form-control" id="SigninEmailaddress" placeholder="Emailaddress">
</div>
<div class="form-group">
<label for="SigninPassword">Password</label>
<input type="password" class="form-control" id="SigninPassword" placeholder="Password"> </div>
<div class="form-group">
<div class="checkbox">
<label><input type="checkbox"> Check me out </label>
</div>
</div>
<div class="form-group"> <button type="submit" class="btn btn-default">Sign in</button> </div>
</form>
</div>
<div class="tab-pane active" role="tabpanel" id="Signup">
<form class="">
<div class="form-group">
<label for="SignupUsername">User name</label>
<input type="text" class="form-control" id="SignupUsername" placeholder="Username">
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
.panel.panel-with-tab
{
border-radius: 0;
}
.panel.panel-with-tab>.nav-tabs.nav-justified>li>a
{
border-top: 0;
border-radius: 0;
}
.panel.panel-with-tab .nav-tabs.nav-justified>li>a:hover
{
background: white;
color: #2196F3;
}
.panel.panel-with-tab .nav-tabs.nav-justified>.active>a,
.panel.panel-with-tab .nav-tabs.nav-justified>.active>a:hover,
.panel.panel-with-tab .nav-tabs.nav-justified>.active>a:focus {
border-top: 0;
background: white;
}
.panel.panel-with-tab .nav-tabs.nav-justified>li:first-child>a,
.panel.panel-with-tab .nav-tabs.nav-justified>li:first-child>a:hover,
.panel.panel-with-tab .nav-tabs.nav-justified>li:first-child>a:focus {
border-left: 0;
}
.panel.panel-with-tab .nav-tabs.nav-justified>li:last-child>a,
.panel.panel-with-tab .nav-tabs.nav-justified>li:last-child>a:hover,
.panel.panel-with-tab .nav-tabs.nav-justified>li:last-child>a:focus {
border-right: 0;
}
.panel-login{
max-width:360px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: