8 lines
170 B
PHP
8 lines
170 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
Thank you. Your account has now been verified.<br /><br />
|
||
|
<a href="login.php?do=login">Click here</a> to continue to the Login screen.
|
||
|
END;
|
||
|
|
||
|
?>
|