You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
885 B

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo $lang['install_done_title'];?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="styles/install.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/common.js"></script>
<script type="text/javascript" src="js/transport.js"></script>
</head>
<body>
<?php include ROOT_PATH . 'install/templates/header.php';?>
<div class="wrapper">
<div class="w1000" id="content">
</div>
<div class="footer">
<?php include ROOT_PATH . 'install/templates/copyright.php';?>
</div>
</div>
<script type="text/javascript">
Ajax.call('cloud.php?step=done','', welcome_api, 'GET', 'TEXT','FLASE');
function welcome_api(result)
{
if(result)
{
setInnerHTML('content',result);
}
}
</script>
</body>
</html>