<?php
require_once($_SERVER['DOCUMENT_ROOT'] . '/_scripts/sessions.php');
$page_title = 'Account activated';
require_once($_SERVER['DOCUMENT_ROOT'] . '/_includes/header.php');
?>
<section>
<article>
<h2>Your account has been activated</h2>
<h3>Thanks for activating your account</h3>
<p>
You will now be able to log in.
</p>
<h3><a href="/login.php">Log in</a></h3>
</article>
</section>
<?php
require_once($_SERVER['DOCUMENT_ROOT'] . '/_includes/footer.php');
?>