1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-18 09:04:35 +01:00

Added blank contact us page

This commit is contained in:
Hillel Coren 2014-02-26 18:50:27 +02:00
parent 4de759ca84
commit d6bb0befa0
3 changed files with 33 additions and 0 deletions

View File

@ -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');

View File

@ -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');

View File

@ -0,0 +1,27 @@
@extends('master')
@section('head')
<link href="{{ asset('css/bootstrap.splash.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('css/splash.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('images/apple-touch-icon-114x114-precomposed.png') }}" rel="apple-touch-icon-precomposed" sizes="114x114">
<link href="{{ asset('images/apple-touch-icon-72x72-precomposed.png') }}" rel="apple-touch-icon-precomposed" sizes="72x72">
<link href="{{ asset('images/apple-touch-icon-57x57-precomposed.png') }}" rel="apple-touch-icon-precomposed">
@stop
@section('body')
<div class="navbar" style="margin-bottom:0px">
<div class="container">
<div class="navbar-inner">
<a class="brand" href="#"><img src=
"images/invoiceninja-logo.png"></a>
<ul class="navbar-list">
<li>{{ link_to('login', Auth::check() ? 'Continue' : 'Login' ) }}</li>
</ul>
</div>
</div>
</div>
</div>
@stop