<?php

	$eula = Filesystem::getFileData("ITDR-EULA.txt");
	$eula = markdown($eula);

?>
<!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" lang="en" xml:lang="en">
	<head>
		<title>End User License Agreement</title>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<link rel="stylesheet" type="text/css" href="<?php echo SA_DIR_COREPATH; ?>/css/itdradmin.css?v=<?php echo SA_PRODUCT_VERSION; ?>" media="all" />
		<style>
			#content {
				width: 800px;
		}
		</style>
	</head>
	<body>
		<div id="container">
			<div id="content">
				<div class="PanelBox">
					<div class="Top">
						<h2 title="End User License Agreement">End User License Agreement</h2>
					</div>
					<div class="Body">
						<div class="WikiText"><?php echo $eula; ?></div>
					</div>
					<div class="Foot">
					</div>
				</div>
			</div>
		</div>
	</body>
</html>