"Creative Game Login Page UI Screen"
Bootstrap 3.0.0 Snippet by fzs1994

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.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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 ---------->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800" rel="stylesheet">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6 col-md-offset-3">
<div id="iosBlurBg">
<div id="whiteBg"></div>
</div>
<div id="bottomEnter"></div>
<div id="bottomBlurBg"></div>
<!-- Login Form -->
<div class="loginForm">
<div class="title">
<p>LOG INTO<br><span>SYSTEM</span></p>
<hr>
<hr class="short">
</div>
<form>
<div class="col-3">
<input class="effect-2" type="text" placeholder="Login...">
<span class="focus-border"></span>
<input class="effect-2" type="password" placeholder="Password...">
<span class="focus-border"></span>
</div>
<div class="forget">
<button class="btn btn-default btn-sm">FORGOT PASSWORD?</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-color: #e3e7ed;
background-size: cover;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
}
#iosBlurBg {
resize: horizontal;
position: relative;
/*width: 100%;
height: 100vh;*/
border-top: 450px solid transparent;
border-left: 550px solid rgba(0,0,0,0.04);
border-bottom: 450px solid transparent;
background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
/*box-shadow: 1px 1px 25px #999;*/
}
#whiteBg {
resize: horizontal;
position: absolute;
top: -410px;
right: 0;
border-top: 410px solid transparent;
border-left: 505px solid rgba(255,255,255,1);
border-bottom: 410px solid transparent;
border-right: 30px solid transparent;
background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 1));
}
#bottomEnter{
position: absolute;
top: 500px;
left: 150px;
z-index: -2;
border-top: 200px solid transparent;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: