wizard.tpl
1.4 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
<!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/jquery-tooltip/lib/jquery.js"></script>-->
<!-- <script type="text/javascript" src="resources/jquery-tooltip/lib/jquery.bgiframe.js"></script>-->
<!-- <script type="text/javascript" src=".resources/jquery-tooltip/lib/jquery.dimensions.js"></script>-->
<!-- <script type="text/javascript" src="resources/jquery-tooltip/lib/jquery.tooltip.js"></script>-->
<script type="text/javascript" src="resources/wizard.js" ></script>
<link rel="stylesheet" type="text/css" href="resources/wizard.css" />
</head>
<body onload="w.doFormCheck();">
<div id="outer-wrapper">
<div id="header"></div>
<div id="wrapper">
<div id="container">
<div id="sidebar">
<?php echo $left; ?>
</div>
<div id="content">
<div id="content_container">
<?php echo $content; ?>
</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>