-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
63 lines (57 loc) · 2.53 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shamcey - Metro Style Admin Template</title>
<link rel="stylesheet" href="css/style.default.css" type="text/css" />
<link rel="stylesheet" href="css/style.shinyblue.css" type="text/css" />
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/jquery-migrate-1.1.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.10.3.min.js"></script>
<script type="text/javascript" src="js/modernizr.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#login').submit(function(){
var u = jQuery('#username').val();
var p = jQuery('#password').val();
if(u == '' && p == '') {
jQuery('.login-alert').fadeIn();
return false;
}
});
});
</script>
</head>
<body class="loginpage">
<div class="loginpanel">
<div class="loginpanelinner">
<div class="logo animate0 bounceIn"><img src="images/logo.png" alt="" /></div>
<form id="login" action="dashboard.html" method="post">
<div class="inputwrapper login-alert">
<div class="alert alert-error">Invalid username or password</div>
</div>
<div class="inputwrapper animate1 bounceIn">
<input type="text" name="username" id="username" placeholder="Enter any username" />
</div>
<div class="inputwrapper animate2 bounceIn">
<input type="password" name="password" id="password" placeholder="Enter any password" />
</div>
<div class="inputwrapper animate3 bounceIn">
<button name="submit">Sign In</button>
</div>
<div class="inputwrapper animate4 bounceIn">
<div class="pull-right">Not a member? <a href="registration.html">Sign Up</a></div>
<label><input type="checkbox" class="remember" name="signin" /> Keep me sign in</label>
</div>
</form>
</div><!--loginpanelinner-->
</div><!--loginpanel-->
<div class="loginfooter">
<p>© 2013. Shamcey Admin Template. All Rights Reserved.</p>
</div>
</body>
</html>