d2b9a47fd9cc67af853fcc6b4b435928.php
4.7 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php if (!defined('THINK_PATH')) exit(); /*a:1:{s:42:"themes/admin_simpleboot3/admin\\login.html";i:1547883254;}*/ ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title><?php echo (isset($site_info['site_name']) && ($site_info['site_name'] !== '')?$site_info['site_name']:''); ?> <?php echo lang('ADMIN_CENTER'); ?></title>
<meta http-equiv="X-UA-Compatible" content="chrome=1,IE=edge"/>
<meta name="renderer" content="webkit|ie-comp|ie-stand">
<meta name="robots" content="noindex,nofollow">
<!-- HTML5 shim for IE8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<![endif]-->
<link href="__TMPL__/public/assets/themes/<?php echo cmf_get_admin_style(); ?>/bootstrap.min.css" rel="stylesheet">
<link href="__STATIC__/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="__TMPL__/public/assets/themes/<?php echo cmf_get_admin_style(); ?>/login.css" rel="stylesheet">
<script>
if (window.parent !== window.self) {
document.write = '';
window.parent.location.href = window.self.location.href;
setTimeout(function () {
document.body.innerHTML = '';
}, 0);
}
</script>
<style>
html{
background: url("__STATIC__/images/bro_bg.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
background-color: inherit;
}
.login_box{
background-color: white;
padding: 2rem 4rem;
border-radius: 0.5rem;
}
</style>
</head>
<body>
<div class="wrap">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="login_box">
<h1 class="text-center"><?php echo (isset($site_info['site_name']) && ($site_info['site_name'] !== '')?$site_info['site_name']:''); ?></h1>
<form class="js-ajax-form" action="<?php echo url('public/doLogin'); ?>" method="post">
<div class="form-group">
<input type="text" id="input_username" class="form-control" name="username"
placeholder="<?php echo lang('USERNAME_OR_EMAIL'); ?>" title="<?php echo lang('USERNAME_OR_EMAIL'); ?>"
value="<?php echo cookie('admin_username'); ?>" data-rule-required="true" data-msg-required="">
</div>
<div class="form-group">
<input type="password" id="input_password" class="form-control" name="password"
placeholder="<?php echo lang('PASSWORD'); ?>" title="<?php echo lang('PASSWORD'); ?>" data-rule-required="true"
data-msg-required="">
</div>
<div class="form-group">
<div style="position: relative;">
<input type="text" name="captcha" placeholder="验证码" class="form-control captcha">
<?php $__CAPTCHA_SRC=url('/captcha/new').'?height=32&width=150&font_size=18'; ?>
<img src="<?php echo $__CAPTCHA_SRC; ?>" onclick="this.src='<?php echo $__CAPTCHA_SRC; ?>&time='+Math.random();" title="换一张" class="captcha captcha-img verify_img" style="cursor: pointer;position:absolute;right:1px;top:1px;"/>
</div>
</div>
<div class="form-group">
<input type="hidden" name="redirect" value="">
<button class="btn btn-primary btn-block js-ajax-submit" type="submit" style="margin-left: 0px"
data-loadingmsg="<?php echo lang('LOADING'); ?>">
<?php echo lang('LOGIN'); ?>
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
//全局变量
var GV = {
ROOT: "__ROOT__/",
WEB_ROOT: "__WEB_ROOT__/",
JS_ROOT: "static/js/",
APP: ''/*当前应用名*/
};
</script>
<script src="__TMPL__/public/assets/js/jquery-1.10.2.min.js"></script>
<script src="__STATIC__/js/wind.js"></script>
<script src="__STATIC__/js/admin.js"></script>
<script>
(function () {
document.getElementById('input_username').focus();
})();
</script>
</body>
</html>