www.legu.cc/application/Install/View/step5.html
2021-09-06 11:50:33 +08:00

46 lines
1.1 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>
<include file="Public:head" />
<script src="__PUBLIC__/js/jquery.js"></script>
</head>
<body>
<div class="wrap">
<include file="Public:header" />
<section class="section">
<div style="padding: 40px 20px;">
<div class="text-center">
<a style="font-size: 18px;">恭喜您,安装完成!</a>
<br>
<br>
<div class="alert alert-danger" style="width: 350px;display: inline-block;">
为了您站点的安全安装完成后即可将网站application目录下的“Install”文件夹删除!
另请对data/conf/db.php文件做好备份以防丢失
</div>
<br>
<a class="btn btn-success" href="__ROOT__/">进入前台</a>
<a class="btn btn-success" href="__ROOT__/admin">进入后台</a>
</div>
</div>
</section>
</div>
<include file="Public:footer" />
<script>
$(function() {
return;
$.ajax({
type : "POST",
url : "http://www.thinkcmf.com/service/installinfo.php",
data : {
host : '<?php echo $host;?>',
ip : '<?php echo $ip?>'
},
dataType : 'json',
success : function() {
}
});
});
</script>
</body>
</html>