-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlocked.html
More file actions
executable file
·72 lines (57 loc) · 2.05 KB
/
Copy pathlocked.html
File metadata and controls
executable file
·72 lines (57 loc) · 2.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="images/favicon.png" type="image/png">
<title>Bracket Responsive Bootstrap3 Admin</title>
<link href="css/style.default.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body class="notfound">
<section>
<div class="lockedpanel">
<div class="locked">
<i class="fa fa-lock"></i>
</div>
<div class="loginuser">
<img src="images/photos/loggeduser.png" alt="" />
</div>
<div class="logged">
<h4>John Doe</h4>
<small class="text-muted">[email protected]</small>
</div>
<form method="post" action="index.html">
<input type="password" class="form-control" placeholder="Enter your password" />
<button class="btn btn-success btn-block">Unlock</button>
</form>
</div><!-- lockedpanel -->
</section>
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/jquery-migrate-1.2.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/modernizr.min.js"></script>
<script src="js/jquery.sparkline.min.js"></script>
<script src="js/jquery.cookies.js"></script>
<script src="js/toggles.min.js"></script>
<script src="js/retina.min.js"></script>
<script src="js/custom.js"></script>
<script>
jQuery(document).ready(function(){
"use strict";
// Do not use the code below
// This is for demo purposes only
var c = jQuery.cookie('change-skin');
if (c && c == 'katniss') {
jQuery('.btn-success').addClass('btn-primary').removeClass('btn-success');
}
});
</script>
</body>
</html>