mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
112 lines
3.4 KiB
PHP
112 lines
3.4 KiB
PHP
|
@extends('master')
|
||
|
|
||
|
@section('head')
|
||
|
<link href="{{ asset('vendor/bootstrap/dist/css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
||
|
<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 id="fb-root"></div>
|
||
|
<script>(function(d, s, id) {
|
||
|
var js, fjs = d.getElementsByTagName(s)[0];
|
||
|
if (d.getElementById(id)) return;
|
||
|
js = d.createElement(s); js.id = id;
|
||
|
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=635126583203143";
|
||
|
fjs.parentNode.insertBefore(js, fjs);
|
||
|
}(document, 'script', 'facebook-jssdk'));</script>
|
||
|
|
||
|
|
||
|
{{ Form::open(array('url' => 'get_started', 'id' => 'startForm')) }}
|
||
|
{{ Form::hidden('guest_key') }}
|
||
|
{{ Form::close() }}
|
||
|
|
||
|
|
||
|
<script>
|
||
|
$(document).ready(function () {
|
||
|
if (isStorageSupported()) {
|
||
|
$('[name="guest_key"]').val(localStorage.getItem('guest_key'));
|
||
|
}
|
||
|
});
|
||
|
|
||
|
function isStorageSupported() {
|
||
|
try {
|
||
|
return 'localStorage' in window && window['localStorage'] !== null;
|
||
|
} catch (e) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function getStarted() {
|
||
|
$('#startForm').submit();
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<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('about', 'About Us' ) }}</li>
|
||
|
<li>{{ link_to('contact', 'Contact Us' ) }}</li>
|
||
|
<li>{{ link_to('login', Auth::check() ? 'My Account' : 'Login' ) }}</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
@yield('content')
|
||
|
|
||
|
|
||
|
|
||
|
<footer>
|
||
|
<div class="navbar" style="margin-bottom:0px">
|
||
|
<div class="container">
|
||
|
<div class="social">
|
||
|
<div class="fb-like" data-href="https://www.invoiceninja.com" data-layout="button" data-action="like" data-show-faces="false" data-share="false"></div>
|
||
|
<div class="fb-follow" data-href="https://www.facebook.com/invoiceninja" data-colorscheme="light" data-layout="button" data-show-faces="false"></div>
|
||
|
|
||
|
|
||
|
<!--
|
||
|
<a href="http://twitter.com/eas_id"><span class=
|
||
|
"socicon">c</span></a>
|
||
|
<a href=
|
||
|
"http://facebook.com/invoiceninja" target="_blank"><span class=
|
||
|
"socicon">b</span></a> <a href=
|
||
|
"http://twitter.com/invoiceninja" target="_blank"><span class=
|
||
|
"socicon">a</span></a>
|
||
|
-->
|
||
|
|
||
|
<p>Copyright © 2014 InvoiceNinja. All rights reserved.</p>
|
||
|
</div>
|
||
|
|
||
|
<div class="navbar-inner">
|
||
|
<ul class="navbar-list">
|
||
|
<li>{{ link_to('about', 'About Us' ) }}</li>
|
||
|
<li>{{ link_to('contact', 'Contact Us' ) }}</li>
|
||
|
<li>{{ link_to('login', Auth::check() ? 'My Account' : 'Login' ) }}</li>
|
||
|
</ul>
|
||
|
|
||
|
<!--
|
||
|
<ul class="navbar-list">
|
||
|
<li><a href="#">For developers</a></li>
|
||
|
<li><a href="#">Jobs</a></li>
|
||
|
<li><a href="#">Terms & Conditions</a></li>
|
||
|
<li><a href="#">Our Blog</a></li>
|
||
|
</ul>
|
||
|
-->
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</footer><script src="{{ asset('/js/retina-1.1.0.min.js') }}" type="text/javascript"></script>
|
||
|
|
||
|
|
||
|
|
||
|
@stop
|