123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?php /*a:3:{s:59:"/data/web/mall.valimart.net/app/admin/view/login/index.html";i:1657785096;s:61:"/data/web/mall.valimart.net/app/admin/view/public/header.html";i:1657785098;s:61:"/data/web/mall.valimart.net/app/admin/view/public/footer.html";i:1657785098;}*/ ?>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title><?php echo htmlentities((isset($html_title) && ($html_title !== '')?$html_title:config('ds_config.site_name'))); ?><?php echo htmlentities(lang('system_backend')); ?></title>
- <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
- <link rel="stylesheet" href="<?php echo htmlentities(ADMIN_SITE_ROOT); ?>/css/admin.css">
- <link rel="stylesheet" href="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/js/jquery-ui/jquery-ui.min.css">
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/jquery-2.1.4.min.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/jquery.validate.min.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/jquery.cookie.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/common.js"></script>
- <script src="<?php echo htmlentities(ADMIN_SITE_ROOT); ?>/js/admin.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/js/jquery-ui/jquery-ui.min.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/js/jquery-ui/jquery.ui.datepicker-zh-CN.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/perfect-scrollbar.min.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/layer/layer.js"></script>
- <script type="text/javascript">
- var BASESITEROOT = "<?php echo htmlentities(BASE_SITE_ROOT); ?>";
- var ADMINSITEROOT = "<?php echo htmlentities(ADMIN_SITE_ROOT); ?>";
- var BASESITEURL = "<?php echo htmlentities(BASE_SITE_URL); ?>";
- var HOMESITEURL = "<?php echo htmlentities(HOME_SITE_URL); ?>";
- var ADMINSITEURL = "<?php echo htmlentities(ADMIN_SITE_URL); ?>";
- </script>
- </head>
- <body>
- <div id="append_parent"></div>
- <div id="ajaxwaitid"></div>
-
- <style>
- body{background-image:url(<?php echo htmlentities(ADMIN_SITE_ROOT); ?>/images/wallpage/bg_<?php echo rand(1,8); ?>.jpg););background-size: cover;}
- </style>
- <div class="login">
- <div class="login_body">
- <div class="login_header">
- <img src="<?php echo ds_get_pic('admin/common',config('ds_config.admin_logo')); ?>"/>
- </div>
- <div class="login_content">
- <form method="post" id="login_form">
- <div class="form-group">
- <input type="text" name="admin_name" placeholder="<?php echo htmlentities(lang('ds_member_name')); ?>" required class="text">
- </div>
- <div class="form-group">
- <input type="password" name="admin_password" autocomplete="new-password" placeholder="<?php echo htmlentities(lang('ds_member_password')); ?>" required class="text">
- </div>
- <div class="form-group">
- <input type="text" name="captcha" placeholder="<?php echo htmlentities(lang('ds_captcha')); ?>" required class="text" style="width:60%;float:left;">
- <img src="<?php echo url('Login/makecode'); ?>" style="width:30%;height:38px;" id="change_captcha"/>
- </div>
- <div class="form-group">
- <input type="button" class="btn" id="login_btn" value="<?php echo htmlentities(lang('ds_login')); ?>" style="width:100%"/>
- </div>
- </form>
- </div>
- </div>
- </div>
- <script>
- $(document).keyup(function (event) {
- if (event.keyCode == 13) {
- login_form();
- }
- });
- $('#login_btn').on('click', function () {
- login_form();
- });
- function login_form()
- {
- var _form = $('#login_form');
- $.ajax({
- type: "POST",
- url: "<?php echo url('Login/index'); ?>",
- data: _form.serialize(),
- dataType: 'json',
- success: function (res) {
- layer.msg(res.message, {time: 1500}, function () {
- if (res.code == 10000) {
- location.href = "<?php echo url('Index/index'); ?>";
- } else {
- $('#change_captcha').attr('src', '<?php echo url("Login/makecode"); ?>?' + (new Date().getTime()));
- }
- });
- }
- });
- }
- $('#change_captcha').click(function () {
- $(this).attr('src', '<?php echo url("Login/makecode"); ?>?' + (new Date().getTime()));
- });
- </script>
-
|