50 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html>
<head>
<meta charset="UTF-8"/>
<title>{$title|default=''} - {$powered|default=''}</title>
<link rel="stylesheet" href="css/install2.css"/>
<link rel="stylesheet" href="css/step5.css"/>
</head>
<body>
<div class="wrap">
<div class="title">安装完成</div>
<div class="progress">
<div class="trip p8">
为了您站点的安全安装完成后即可将网站根目录下的“install”文件夹下的所有文件删除防止重复安装。
</div>
</div>
<div class="bottom-btn">
<div class="pre btn">
<a href="/" class="btn mid">进入前台</a>
</div>
<div class="admin btn">
<a href="/admin" class="btn btn_submit J_install_btn mid">进入后台</a>
</div>
</div>
</div>
</body>
<script src="js/jquery.js"></script>
<script>
$(function () {
$.ajax({
type: "POST",
url: "http://shop.crmeb.net/index.php/admin/server.upgrade_api/updatewebinfo",
header: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Headers': 'X-Requested-With',
'Access-Control-Allow-Methods': 'PUT,POST,GET,DELETE,OPTIONS'
},
data: {
host: '<?php echo $host;?>',
https: '<?php echo "http://".$host;?>',
version: '<?php echo $version;?>',
ip: <?php echo json_encode($ip); ?>
},
dataType: 'json',
success:function () {}
})
});
</script>
</html>