error.tpl
2.66 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>KnowledgeTree Installer</title>
<script type="text/javascript" src="resources/js/jquery-tooltip/lib/jquery.js"></script>
<script type="text/javascript" src="resources/js/wizard.js" ></script>
<link rel="stylesheet" type="text/css" href="resources/css/wizard.css" />
</head>
<body onload="">
<div id="outer-wrapper">
<div id="header">
<div id="logo"><img src="resources/graphics/dame/installer-header_logo.png"/></div>
<div id="install_details">
<span style="font-size:120%;"> 3.7 </span>
<span style="font-size:80%;">Commercial Edition</span>
</div>
</div>
<div id="wrapper">
<div id="container">
<div id="sidebar">
<span id="welcome" class="current">Welcome</span><br><span id="license" class="inactive">License Agreement</span><br><span id="installtype" class="inactive">Install Type</span><br><span id="dependencies" class="inactive">PHP Dependencies</span><br><span id="configuration" class="inactive">System Configuration</span><br><span id="services" class="inactive">Service Dependency</span><br><span id="database" class="inactive">Database Configuration</span><br><span id="registration" class="inactive">Registration</span><br><span id="install" class="inactive">Install</span><br><span id="complete" class="inactive">Complete</span><br></div>
<div id="content">
<div id="content_container">
<form action="index.php?step_name=welcome" method="post">
<div id="step_content" class="step">
<p class="title">Welcome to the KnowledgeTree Setup Wizard</p>
<?php if(isset($error)) {
echo "<span class='error'>".$error."</span>";
?>
<?php
}
?>
<?php
if(isset($errors)) {
if($errors){
echo '<div class="error">';
foreach ($errors as $msg){
echo $msg . "<br />";
?>
<a href="javascript:this.location.reload();" class="refresh">Refresh</a>
<?php
}
echo '</div>';
}
}
?>
</div>
</form>
</div>
</div>
</div>
<div class="clearing"> </div>
</div>
<div id="footer">
<img width="105" height="23" align="right" src="resources/graphics/dame/powered-by-kt.png" style="padding: 5px;"/>
</div>
</div>
</body>
</html>
<script>
var w = new wizard();
</script>