step5.html
1.2 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
<!doctype html>
<html>
<head>
<include file="public/head" />
<script src="__STATIC__/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;">
为了您站点的安全,安装完成后即可将网站app目录下的“install”文件夹删除!
另请对data/conf/database.php文件做好备份,以防丢失!
</div>
<br>
<a class="btn btn-success" href="{:cmf_get_root()}/">进入前台</a>
<a class="btn btn-success" href="{:cmf_get_root()}/index.php?s=admin">进入后台</a>
</div>
</div>
</section>
</div>
<include file="public/footer" />
<script>
$(function() {
return;
$.ajax({
type : "POST",
url : "http://www.bronet.cn/service/installinfo.php",
data : {
host : "{$host|default=''}",
ip : "{$ip|default=''}"
},
dataType : 'json',
success : function() {
}
});
});
</script>
</body>
</html>