18 lines
542 B
PHP
18 lines
542 B
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title><?php echo $config['name'].' '.$config['version']; ?> - <?php echo $config['powered']; ?></title>
|
|
<link rel="stylesheet" href="./templates/css/install.css" />
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<div class="header">
|
|
<div class="header-install"><?php echo $config['name']; ?>-安装向导</div>
|
|
<div class="header-version">版本:<?php echo $config['version'];?></div>
|
|
</div>
|
|
<div class="step">
|
|
<ul>
|
|
<?php echo $step_html;?>
|
|
</ul>
|
|
</div>
|