I'd just pass a url parameter and use that instead.
Just update your redirect on the activate page to go to: loginpage.php?activated=1
then change your conditional to:
<?php
// Show IF Conditional region
if (isset($_GET['activated'])) {
?>
ACCOUNT HAS BEEN ACTIVATED. YOU CAN NOW LOGIN.
<?php }
// endif Conditional region
?>