mike.morgan%oregonstate.edu 3b586772f5 Template work, finished everything but the SQL inserts.
git-svn-id: svn://10.0.0.236/trunk@188237 18797224-902f-48f8-a5cc-f745e15eee43
2006-01-26 17:22:31 +00:00

17 lines
372 B
PHP

<?php
/**
* Thank you page on survey completion.
* Since the input is all optional, on any submit they will see this.
* @package survey
* @subpackage docs
*/
require_once(HEADER);
echo <<<THANKS
<h1>Thanks!</h1>
<p>Thank you for taking the time to help us make Firefox and Thunderbird better products. We hope to see you soon.</p>
THANKS;
require_once(FOOTER);
?>