This directory is where your website widgets (template files) will live.

Please refer to the manual on how to setup your system to use these widgets.

Below is a sample PHP/HTML page that will need to be created or integrated
into your existing website.

Again, please refer to the manual for further instructions.

--------------------------------------------------------------------------------

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title>Website Widget</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="/cvs/lib-modernbill/include/themes/default/css/style.css" />
<link rel="stylesheet" type="text/css" href="/cvs/lib-modernbill/include/themes/default/css/clientstyle.css" />
</head>
<body>
<br />
<center>
<table width="640" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<fieldset><legend><b>Available Hosting Products</b></legend>
<?php
	$websiteWidgetArgs = array(
		'widgetID' => 2, // some id
		'method' => 'local',
		'urlORpath' => 'B:\\apache\\htdocs\\cvs\\app-modernbill-order' // some path
	);
	include("website_widget_creator.php");
	chdir(dirname(__FILE__));
?>
</fieldset>
</td>
</tr>
</table>
</center>
</body>
</html>

--------------------------------------------------------------------------------

