forked from ithoq/MagicTheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lockscreen.html
79 lines (70 loc) · 2.75 KB
/
lockscreen.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Kertas – Lock Screen</title>
<link rel="icon" href="assets/img/favicon.ico">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- BEGIN CSS FRAMEWORK -->
<link rel="stylesheet" href="assets/plugins/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/plugins/font-awesome/css/font-awesome.min.css">
<!-- END CSS FRAMEWORK -->
<!-- BEGIN CSS PLUGIN -->
<link rel="stylesheet" href="assets/plugins/pace/pace-theme-minimal.css">
<!-- END CSS PLUGIN -->
<!-- BEGIN CSS TEMPLATE -->
<link rel="stylesheet" href="assets/css/main.css">
<!-- END CSS TEMPLATE -->
</head>
<body class="login">
<div class="outer">
<div class="middle">
<div class="inner">
<div class="row">
<!-- BEGIN LOCKSCREEN BOX -->
<div class="col-lg-12">
<h3 class="text-center login-title">Welcome back! Log in to continue</h3>
<div class="account-wall">
<!-- BEGIN PROFILE IMAGE -->
<img class="profile-img" src="assets/img/user/avatar01.png" alt="">
<!-- END PROFILE IMAGE -->
<p class="profile-name">Jeffrey Williams</p>
<span class="profile-email">[email protected]</span>
<!-- BEGIN LOGIN FORM -->
<form name="login" action="index.html" class="form-login">
<input type="password" name="password" class="form-control" placeholder="Password">
<button class="btn btn-lg btn-primary btn-block" type="submit">Log in</button>
<label class="checkbox pull-left">
<input type="checkbox" value="remember-me">Remember me
</label>
<a href="#" class="pull-right need-help">Need help?</a><span class="clearfix"></span>
</form>
<!-- END LOGIN FORM -->
</div>
<a href="login.html" class="text-center new-account">Log in with a different account</a>
</div>
<!-- END LOCKSCREEN BOX -->
</div>
</div>
</div>
</div>
<!-- BEGIN JS FRAMEWORK -->
<script src="assets/plugins/jquery-2.1.0.min.js"></script>
<script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<!-- END JS FRAMEWORK -->
<!-- BEGIN JS PLUGIN -->
<script src="assets/plugins/pace/pace.min.js"></script>
<!-- END JS PLUGIN -->
</body>
</html>