wizard.tpl
2.21 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link rel="shortcut icon" href="../wizard/resources/graphics/favicon.ico" type="image/x-icon">
<title>KnowledgeTree Installer</title>
<?php //echo $html->tpjs('jquery-1.3.2.js'); ?>
<?php echo $html->js('jquery-1.4.2.min.js'); ?>
<?php echo $html->tpjs('jquery_noconflict.js'); ?>
<?php echo $html->js('firstlogin.js'); ?>
<?php echo $html->css('firstlogin.css'); ?>
<?php echo $html->css('wizard.css'); ?>
<?php if(AGENT == "IE6") echo $html->css('ie6.css'); ?>
<?php if(AGENT == "IE7") echo $html->css('ie7.css'); ?>
<?php if(AGENT == "IE8") echo $html->css('ie8.css'); ?>
<?php if(INSTALL_TYPE == "community") echo $html->css('community.css'); ?>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
</head>
<body onload="">
<div id="outer-outer-wrapper" align="center">
<div id="outer-wrapper" align="left">
<div id="header">
<div id="logo"><?php echo $html->image('dame/installer-header_logo.png'); ?> </div>
<div id="version_details">
<span style="font-size:120%;"> <?php if (isset($vars['fl_version'])) echo $vars['fl_version']; ?> </span>
<span style="font-size:120%;"> <?php if (isset($vars['fl_version'])) echo $vars['fl_type']; ?></span>
</div>
</div>
<div id="wrapper" class="wizard">
<div id="container">
<div id="sidebar">
<?php echo $vars['left']; ?>
</div>
<div id="content">
<div id="content_container">
<?php echo $content; ?>
</div>
</div>
<div id="loading" style="display:none;"> <?php echo $html->image('loading.gif', array("height"=>"32px", "width"=>"32px")); ?> </div>
</div>
<div class="clearing"> </div>
</div>
<div id="footer">
<?php echo $html->image('dame/powered-by-kt.png', array("height"=>"23px", "width"=>"105px", "style"=>"padding: 5px;")); ?>
</div>
</div>
</div>
</body>
</html>
<script>
var fl = new firstlogin('<?php echo WIZARD_ROOTURL; ?>', '<?php echo $vars['ft_handle']; ?>');
</script>