index.htm
3.08 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>后台登录</title>
<link rel="stylesheet" href="../../static/css/layui.css-t=20180403-1.css" tppabs="https://yl.hnla.cn/static/css/layui.css?t=20180403-1" media="all">
<link rel="stylesheet" href="../../static/css/admin.css-t=20180403-1.css" tppabs="https://yl.hnla.cn/static/css/admin.css?t=20180403-1" media="all">
<script src="../../static/js/jquery.js" tppabs="https://yl.hnla.cn/static/js/jquery.js"></script>
<script type="text/javascript" src="../../static/js/plugins.js" tppabs="https://yl.hnla.cn/static/js/plugins.js"></script>
<script type="text/javascript" src="../../static/js/landui.js" tppabs="https://yl.hnla.cn/static/js/landui.js"></script>
<script src="../../static/js/layui.js-t=.js" tppabs="https://yl.hnla.cn/static/js/layui.js?t="></script>
<script type="text/javascript" src="../../static/js/admin.js" tppabs="https://yl.hnla.cn/static/js/admin.js"></script>
</head>
<body>
<style type="text/css">
.gray-bg{ padding:0px;}
.breadcrumb{display:none}
.admin_login h1{text-align:center}
body{ background:url(../../static/images/admin_loginbg.jpg)/*tpa=https://yl.hnla.cn/static/images/admin_loginbg.jpg*/ center top no-repeat !important;}
</style>
<div class="Loginmain">
<div class="admin_login">
<div class="Login_box">
<h2 class="Loing_Title">后台管理系统</h2>
<div id="message"></div>
<div class="Login_left">
<form class='ld-form' action="https://yl.hnla.cn/kmanager/basic.login/loginCheck" autocomplete='off'>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><input type="text" name="mobile" class="form-control" placeholder="请输入用户名" /><i></i></td>
</tr>
<tr>
<td><input type="password" name="password" class="form-control" placeholder="请输入您的密码" /><i class="login_pwd"></i></td>
</tr>
<tr>
<td class="code"><input type="text" name="code" class="form-control" placeholder="请输入验证码" /><img src="code.png" tppabs="https://yl.hnla.cn/kmanager/basic.login/code" id="imgcode"> <i class="code_ico"></i><a href="javascript:void(0);" class="imgcode" style="margin-left: 5px;">看不清,换一个</a></td>
</tr>
<tr>
<td><input type="submit" name="submit" value="登 录" class="btn ld-btn" /></td>
</tr>
</table>
</form>
</div>
</div>
<div class="Login_bottom">Copyright(c)2001-2024 </div>
</div>
</div>
<script type="text/javascript">
LD.validater.initValidate();
$(document).ready(function () {
//点击更换验证码
$(".code #imgcode").click(function () {
var src = $(this).attr("src") + "?random=" + Math.random()
$(this).attr("src", src);
})
$(".code .imgcode").click(function () {
var src = $("#imgcode").attr("src") + "?random=" + Math.random()
$("#imgcode").attr("src", src);
});
});
</script>
</body>
</html>