-
Notifications
You must be signed in to change notification settings - Fork 0
/
test2.html
69 lines (64 loc) · 2.24 KB
/
test2.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<style type="text/css">
body{
background: #00589F;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00589F', endColorstr='#0073CF', GradientType=0);
background: -webkit-linear-gradient(to bottom, #00589F 50%, #0073CF) !important;
background: -moz-linear-gradient(to bottom, #00589F 50%, #0073CF) !important;
background: -ms-linear-gradient(to bottom, #00589F 50%, #0073CF) !important;
background: -o-linear-gradient(to bottom, #00589F 50%, #0073CF) !important;
background: linear-gradient(to bottom, #00589F 50%, #0073CF) !important;
color: yellow;
}
div.well{
height: 250px;
}
.Absolute-Center {
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
.Absolute-Center.is-Responsive {
width: 50%;
height: 50%;
min-width: 200px;
max-width: 400px;
padding: 40px;
}
#logo-container{
margin: auto;
margin-bottom: 10px;
width:200px;
height:30px;
background-image:url('http://placehold.it/200x30/000000/ffffff/&text=BRAND+LOGO');
}
</style>
<div class="container">
<div class="row">
<div class="Absolute-Center is-Responsive">
<div id="logo-container"></div>
<div class="col-sm-12 col-md-10 col-md-offset-1">
<form action="" id="loginForm">
<div class="form-group input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span>
<input class="form-control" type="text" name='username' placeholder="username"/>
</div>
<div class="form-group input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-lock"></i></span>
<input class="form-control" type="password" name='password' placeholder="password"/>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> I agree to the <a href="#">Terms and Conditions</a>
</label>
</div>
<div class="form-group">
<button type="button" class="btn btn-def btn-block">Login</button>
</div>
<div class="form-group text-center">
<a href="#">Forgot Password</a> | <a href="#">Support</a>
</div>
</form>
</div>
</div>
</div>
</div>