1
0
mirror of https://gitee.com/zhc02/timely_service.git synced 2025-06-27 21:10:14 +08:00
2020-03-12 00:02:09 +08:00

45 lines
1.2 KiB
PHP
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><?php echo $html_title;?></title>
<link href="css/install.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/jquery.js"></script>
<link href="css/perfect-scrollbar.min.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/perfect-scrollbar.min.js"></script>
<script type="text/javascript" src="js/jquery.mousewheel.js"></script>
</head>
<body>
<?php echo $html_header;?>
<div class="main">
<div class="final-succeed"> <span class="ico"></span>
<h2>程序已成功安装</h2>
<h5>选择您要进入的页面</h5>
</div>
<div class="final-site-nav">
<div class="arrow"></div>
<ul>
<li class="shop">
<div class="ico"></div>
<h5><a href="/">后台</a></h5>
<h6>系统后台</h6>
</li>
</ul>
</div>
<div class="final-intro">
<p>用户名admin 密码123456</p>
</div>
<div class="final-intro">
</div>
</div>
<?php echo $html_footer;?>
<script type="text/javascript">
$(document).ready(function(){
//自定义滚定条
$('#text-box').perfectScrollbar();
});
</script>
</body>
</html>