Initial commit
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
<?php if (!defined('THINK_PATH')) exit();?><!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Jijincms 安装向导</title>
|
||||
<link rel="stylesheet" href="/Public/install/css/theme.min.css" />
|
||||
<link rel="stylesheet" href="/Public/install/css/install.css" />
|
||||
|
||||
<script src="/Public/install/js/jquery.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrap">
|
||||
<div class="header">
|
||||
<h1 class="logo">Jijincms 安装向导</h1>
|
||||
<div class="version"><?php echo (C("VERSION")); ?></div>
|
||||
</div>
|
||||
<section class="section">
|
||||
<div class="step">
|
||||
<ul class="unstyled">
|
||||
<li class="on"><em>1</em>检测环境</li>
|
||||
<li class="on"><em>2</em>创建数据</li>
|
||||
<li class="current"><em>3</em>完成安装</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="install" id="log">
|
||||
<ul id="loginner" class="unstyled"></ul>
|
||||
</div>
|
||||
<div class="bottom text-center">
|
||||
<a href="javascript:;"><i class="fa fa-refresh fa-spin"></i> 正在安装...</a>
|
||||
</div>
|
||||
</section>
|
||||
<script type="text/javascript">
|
||||
function showmsg(content,status){
|
||||
var icon='<i class="fa fa-check correct"></i> ';
|
||||
if(status=="error"){
|
||||
icon ='<i class="fa fa-remove error"></i> ';
|
||||
}
|
||||
$('#loginner').append("<li>"+icon+content+"</li>");
|
||||
$("#log").scrollTop(1000000000);
|
||||
}
|
||||
</script>
|
||||
</div>
|
||||
<div class="footer">
|
||||
© 2018-<?php echo date('Y');?> <a href="http://www.jijinweb.com" target="_blank">Jijincms</a>上海集锦信息科技有限公司出品
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user