<?php

include('includes/header.html');

# Echo a box to let the user know they've been registered.
?>
<div id="title">
<h2>You have been registered!</h2>
</div>
<div id="box">
	<p id="login"><a href="login.php">Login</a></p>
	</div>
<?php

include ('includes/footer.html');

?>