diff --git a/www/landscape/outdoorevents/thankyou.php b/www/landscape/outdoorevents/thankyou.php
index 94e4bce62ea1e25a41784b9fe25ad7f0471bf050..eec447fa9a5055369d335def05454035a1b59b7c 100644
--- a/www/landscape/outdoorevents/thankyou.php
+++ b/www/landscape/outdoorevents/thankyou.php
@@ -1 +1,27 @@
-thank you
\ No newline at end of file
+<?php
+set_include_path(dirname(dirname(dirname(dirname(__FILE__)))).'/lib/php/'.PATH_SEPARATOR.get_include_path());
+require_once 'UNL/Templates.php';
+
+$page                   = UNL_Templates::factory('Fixed');
+$page->doctitle         = '<title>UNL | Landscape Services | Outdoor Event Space Request</title>';
+$page->head             .= file_get_contents('http://www.unl.edu/landscape/sharedcode/localSiteLinks.html');
+
+$page->navlinks         = file_get_contents('http://www.unl.edu/landscape/sharedcode/navigation.html');
+$page->footercontent    = file_get_contents('http://www.unl.edu/landscape/sharedcode/footer.html');
+$page->leftcollinks     = file_get_contents('http://www.unl.edu/landscape/sharedcode/relatedLinks.html');
+$page->contactinfo      = file_get_contents('http://www.unl.edu/landscape/sharedcode/footerContactInfo.html');
+$page->breadcrumbs      = '<ul>
+                            <li><a href="http://www.unl.edu/">UNL</a></li>
+                            <li><a href="http://bf.unl.edu/">Business &amp; Finance</a></li>
+                            <li><a href="http://www.unl.edu/landscape/">Landscape Services</a></li>
+                            <li>Outdoor Event Space Request</li>
+                           </ul>';
+$page->titlegraphic     = '<h1>Landscape Services</h1>';
+$page->pagetitle        = '<h2>Outdoor Event Space Request</h2>';
+$page->maincontentarea  = <<<EOF
+
+<h3>Thank you for submitting your request, we will contact you as to availability.</h3>
+
+EOF;
+
+echo $page->toHtml();