"Login Page"
Bootstrap 3.3.0 Snippet by JesusKostov

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 ---------->
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Document</title>
<link rel="stylesheet" href="bootstrap-3.3.7-dist/css/bootstrap.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="big_container" class="col-md-12">
<div id="small_container" class="col-md-6">
<h1 id="ww">Welcome</h1>
<div id="input_container" class="col-md-12">
<div class="input-group">
<span class="input-group-addon" id="basic-addon1"><span class="glyphicon glyphicon-user"></span></span>
<input type="text" class="form-control" placeholder="Username" aria-describedby="basic-addon1">
</div>
<div class="input-group">
<span class="input-group-addon" id="basic-addon1"><span class="glyphicon glyphicon-lock"></span></span>
<input type="password" class="form-control" placeholder="Password" aria-describedby="basic-addon1">
</div>
<p><a id="btn" class="btn btn-primary btn-lg" href="#" role="button">LOGIN</a></p>
</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
html{
background: url("https://wallpaperscraft.com/image/blur_background_pink_orange_light_73376_2560x1024.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 100%;
}
@font-face{
font-family: firstfont;
src: url(Bungasai.ttf);
}
#big_container{
height: 100%;
border: 2px transparent solid;
/*margin-top: 50px;*/
}
#small_container{
height: 70%;
/*border: 1px solid rgba(179, 61, 159, 0.77);*/
margin: 0 auto;
/*float: none;*/
top: 0; left: 0; bottom: 0; right: 0;
position: absolute;
/*-webkit-box-shadow: 0px 0px 26px 1px rgba(0,0,0,0.75);*/
/*-moz-box-shadow: 0px 0px 26px 1px rgba(0,0,0,0.75);*/
/*box-shadow: 0px 0px 26px 1px rgba(0,0,0,0.75);*/
/*background-color: rgba(179, 61, 159, 0.77);*/
background-color: transparent;
padding: 0; }
#ww{
text-align: center;
font-size: 60px;
padding: 20px 0 70px 0;
margin: 0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: