<?php
$skin='header';
if(file_exists(cfg_data_path.'/config/script/skin_'.$skin.'.html'))
{
include(cfg_data_path.'/config/script/skin_'.$skin.'.html');
}
else
{
include(cfg_data_path.'/script/skin_'.$skin.'.html');
}
?>
<table style="width:600px; border:#888 1px solid; background: #fff; margin: 20px auto 20px auto;">
<tr>
<td rowspan="2"><div style=" background:#fff; border-right:#aaa 1px solid; margin:0 10px 0 0; text-align:center; width:70px; height:350px;"><img style="margin:5px;" src="images/login.gif" /></div></td>
<td style="text-align:left; width:450px; height:50px;"><h1><?php myecho('New account confirmed!'); ?></h1></td>
</tr>
<tr>
<td style="text-align:left;">
<p><b><?php myecho('Congratulations!'); ?></b></p>
<p><?php myecho('New account is now active.'); ?></p>
<br />
<p><b><?php myecho('You can already close this page.'); ?></b></p>
</td>
</tr>
</table>
<?php
$skin='footer';
if(file_exists(cfg_data_path.'/config/script/skin_'.$skin.'.html'))
{
include(cfg_data_path.'/config/script/skin_'.$skin.'.html');
}
else
{
include(cfg_data_path.'/script/skin_'.$skin.'.html');
}
?>