forked from ljb-2000/theme
-
Notifications
You must be signed in to change notification settings - Fork 2
/
login.html
119 lines (99 loc) · 4.12 KB
/
login.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login // Soft Admin</title>
<!-- Default Styles (DO NOT TOUCH) -->
<link rel="stylesheet" href="lib/css/font-awesome.min.css">
<link rel="stylesheet" href="lib/css/bootstrap.min.css">
<link rel="stylesheet" href="lib/css/fonts.css">
<link type="text/css" rel="stylesheet" href="lib/css/soft-admin.css"/>
<!-- Adjustable Styles -->
<link type="text/css" rel="stylesheet" href="lib/css/icheck.css?v=1.0.1">
<style>
body { background:url(lib/img/bg.png); }
#logo { background:#999; width:220px; margin:auto; position:relative; top:30px; }
#log-tbl { width:100%; height:100%; display:table; clear:both; content:''; }
#log-contain { width:100%; height:100%; text-align:center; display:table-cell; vertical-align:middle; padding-bottom:140px; }
#login { color:#555;
width:460px; margin:auto;
padding: 65px 25px 20px 25px;
background:#FFF; text-align:left;
}
#log-contain .tbl { margin:auto; padding:15px 10px; background:#EFEFEF; width:460px; border-top:1px solid #ddd;}
#login .input-icon > .icon { color:#CCC; }
#login .input-icon { position:relative; top:-20px; }
#login .form-group.remember { margin-bottom:30px; color:#777; }
#login label { font-weight:normal !important; }
.social {width:40px; margin-left:auto; margin-right:auto; position:relative; top:150px; right:-250px; }
.social > .btn { width:40px !important;
-webkit-border-top-right-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
-moz-border-radius-topright: 5px;
-moz-border-radius-bottomright: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
</style>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<script src="lib/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="log-tbl">
<div id="log-contain">
<div class="social">
<a href="#" class="btn btn-primary" style="margin-bottom:10px;"><i class="fa fa-facebook"></i></a>
<a href="#" class="btn btn-info"><i class="fa fa-twitter"></i></a>
</div>
<div id="logo" style="z-index:100;"><img src="lib/img/logo3.png"/></div>
<div id="login">
<form id="login-form" class="form">
<div class="form-group">
<label for="login-username">Username</label>
<div class="input-icon">
<i class="icon icon-user"></i>
<input class="form-control form-soft input-sm" type="text" style="margin-top:0px; margin-bottom:0px;">
</div>
</div>
<div class="form-group">
<label for="login-password">Password</label>
<div class="input-icon">
<i class="icon icon-lock"></i>
<input class="form-control form-soft input-sm" type="password">
</div>
</div>
<div class="form-group remember">
<input tabindex="13" type="checkbox" class="flat-checkbox" id="fc1" checked>
<label for="fc1"> Remember Me</label>
</div>
<div class="form-group">
<button type="submit" id="login-btn" class="btn btn-primary btn-block btn-lg">Login <i class="fa fa-play"></button>
</div>
</form>
</div>
<div class="tbl">
<div class="col-md-12" >
<a href="#" class="btn btn-warning" style="float:left;"><i class="fa fa-question"></i> Forgot Password</a>
<a href="#" class="btn btn-soft" style="float:right;">Create Account <i class="fa fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
<!-- Default JS (DO NOT TOUCH) -->
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="lib/js/bootstrap.min.js"></script>
<!-- Adjustable JS -->
<script src="lib/js/icheck.js"></script>
<script>
$(document).ready(function() {
$('.flat-checkbox').iCheck({
checkboxClass: 'icheckbox_flat-purple',
radioClass: 'iradio_flat-purple'
});
});
</script>
</body>
</html>