"Login Form Panel"
Bootstrap 3.2.0 Snippet by unexperimented

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="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.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="login-body">
<article class="container-login center-block">
<section>
<ul id="top-bar" class="nav nav-tabs nav-justified">
<li class="active"><a href="#login-access">Accesso</a></li>
<li><a href="#">Password dimenticata</a></li>
</ul>
<div class="tab-content tabs-login col-lg-12 col-md-12 col-sm-12 cols-xs-12">
<div id="login-access" class="tab-pane fade active in">
<h2><i class="glyphicon glyphicon-log-in"></i> Accesso</h2>
<form method="post" accept-charset="utf-8" autocomplete="off" role="form" class="form-horizontal">
<div class="form-group ">
<label for="login" class="sr-only">Email</label>
<input type="text" class="form-control" name="login" id="login_value"
placeholder="Email" tabindex="1" value="" />
</div>
<div class="form-group ">
<label for="password" class="sr-only">Password</label>
<input type="password" class="form-control" name="password" id="password"
placeholder="Password" value="" tabindex="2" />
</div>
<div class="checkbox">
<label class="control-label" for="remember_me">
<input type="checkbox" name="remember_me" id="remember_me" value="1" class="" tabindex="3" /> Ricordami
</label>
</div>
<br/>
<div class="form-group ">
<button type="submit" name="log-me-in" id="submit" tabindex="5" class="btn btn-lg btn-primary">Entra</button>
</div>
</form>
</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("http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700");
body {
font-family: Open Sans;
font-size: 14px;
line-height: 1.42857;
background: #333333;
height: 350px;
padding: 0;
margin: 0;
}
.container-login {
min-height: 0;
width: 480px;
color: #333333;
margin-top: 40px;
padding: 0;
}
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
.container-login > section {
margin-left: 0;
margin-right: 0;
padding-bottom: 10px;
}
#top-bar {
display: inherit;
}
.nav-tabs.nav-justified {
border-bottom: 0 none;
width: 100%;
}
.nav-tabs.nav-justified > li {
display: table-cell;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: