File: /home/httpd/html/baretube.com/signup_thankyou.php
<?
session_start();
include('admin/db.php');
if($require_account_confirmation) {
$title = 'You must verify your account!';
$headertitle = 'You must verify your account!';
}
else {
$title = 'Registration Successful!';
$headertitle = 'Registration Successful!';
}
include($basepath.'/templates/template.overall_header.php'); ?>
<? if($require_account_confirmation) { ?>
Your registration was successful, however you must still verify your account!<br />
<strong>Please check your email, and follow the link enclosed in the email from us to verify your account.</strong>
<? } else { ?>
You may now login at the <a href="/login.php">login page</a>.
<? } ?>
<? include($basepath.'/templates/template.overall_footer.php'); ?>