"Simple Login Box"
Bootstrap 3.3.0 Snippet by csbug

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<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="loginbox">
<input type="text" placeholder="username" >
<div class="separtor">
<i></i>
</div>
<input type="password" placeholder="password" >
<a href="" class="forgot_link">forgot ?</a>
<button>Sign in</button>
</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
body {
background: #2B3238;
}
.loginbox {
width: 250px;
height: auto;
margin: auto;
margin-top: 10%;
}
.loginbox input {
border: none;
background: #fff;
font-family: Lato;
font-weight: 700;
display: block;
height: 40px;
outline: none;
width: 100%;
margin: auto;
padding: 6px 12px 6px 12px;
}
.loginbox input[type="text"] {
border-radius: 5px 5px 0px 0px;
}
.loginbox input[type="password"] {
border-radius: 0px 0px 5px 5px;
}
a.forgot_link {
color: #666;
text-decoration: none;
font-size: 11px;
position: relative;
left: 193px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: