diff --git a/app/controllers/HomeController.php b/app/controllers/HomeController.php index 109373a50940..ab892400db74 100755 --- a/app/controllers/HomeController.php +++ b/app/controllers/HomeController.php @@ -14,6 +14,11 @@ class HomeController extends BaseController { return View::make('about_us'); } + public function showContactUs() + { + return View::make('contact_us'); + } + public function showComingSoon() { return View::make('coming_soon'); diff --git a/app/routes.php b/app/routes.php index b3ad8e0103d7..5027f907b9ba 100755 --- a/app/routes.php +++ b/app/routes.php @@ -57,6 +57,7 @@ Route::get('/send_emails', function() { Route::get('/', 'HomeController@showWelcome'); Route::get('/rocksteady', 'HomeController@showWelcome'); Route::get('/about_us', 'HomeController@showAboutUs'); +Route::get('/contact_us', 'HomeController@showContactUs'); Route::get('log_error', 'HomeController@logError'); Route::post('get_started', 'AccountController@getStarted'); diff --git a/app/views/contact_us.blade.php b/app/views/contact_us.blade.php new file mode 100644 index 000000000000..82da7ee46d91 --- /dev/null +++ b/app/views/contact_us.blade.php @@ -0,0 +1,27 @@ +@extends('master') + +@section('head') + + + + + +@stop + +@section('body') + + + + + +@stop \ No newline at end of file