From fe42b5a13cc84c1421276dcd0066e9b8798625ba Mon Sep 17 00:00:00 2001
From: Eric Rasmussen <erasmussen2@unl.edu>
Date: Mon, 11 Apr 2011 18:47:07 +0000
Subject: [PATCH] Thank you page

---
 www/landscape/outdoorevents/thankyou.php | 28 +++++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/www/landscape/outdoorevents/thankyou.php b/www/landscape/outdoorevents/thankyou.php
index 94e4bce..eec447f 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();
-- 
GitLab