This repository has been archived by the owner on Oct 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.html
56 lines (50 loc) · 1.88 KB
/
admin.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>卡乐后台</title>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/common.css">
</head>
<body>
<div class="adminLoginBg"></div>
<div class="login">
<input id="userInput" class="userInput" type="text" value="账号">
<input id="passwordInput" class="passwordInput none" type="password" value="">
<input id="passwordText" class="passwordText" type="text" value="密码" tabindex="">
<input id="loginHint" class="loginHint hidden" type="text" readonly="readonly" value="账号或密码错误">
<input id="submitBtn" class="submintInput" type="submit" value="登 陆" onclick="window.location.href='list.html';">
</div>
<!-- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>-->
<script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
<script src="js/base.js"></script>
<script src="js/common.js"></script>
<script type="text/javascript">
//初始化 统一入口
function init() {
//登陆表单清空
inputEmpty("userInput", "账号");
inputEmpty("passwordText", "密码");
//密码框提示
passwordHint();
//Enter绑定提交按钮
btnBindEnter("submitBtn");
//登陆ajax验证
// loginAjax();
}
init();
</script>
<!--[if lt IE 9]>
<script type="text/javascript" src="js/PIE/PIE.js"></script>
<script type="text/javascript">
$(function() {
if (window.PIE) {
$('.rounded').each(function() {
PIE.attach(this);
});
}
});
</script>
<![endif]-->
</body>
</html>