2013-12-07 19:45:00 +01:00
|
|
|
@extends('master')
|
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
|
2014-01-30 23:29:09 +01:00
|
|
|
@section('head')
|
2014-04-28 22:05:37 +02:00
|
|
|
|
2015-04-10 09:18:07 +02:00
|
|
|
<link href="{{ asset('css/built.css') }}?no_cache={{ NINJA_VERSION }}" rel="stylesheet" type="text/css"/>
|
2014-11-11 18:47:31 +01:00
|
|
|
|
2014-11-12 22:09:42 +01:00
|
|
|
<style type="text/css">
|
2014-04-03 19:54:06 +02:00
|
|
|
|
2014-10-14 21:04:48 +02:00
|
|
|
body {
|
2014-11-12 22:09:42 +01:00
|
|
|
background-color: #EEEEEE;
|
|
|
|
padding-top: 114px;
|
2014-10-14 21:04:48 +02:00
|
|
|
}
|
2014-04-03 19:54:06 +02:00
|
|
|
|
2014-11-12 22:09:42 +01:00
|
|
|
/* Fix for header covering stuff when the screen is narrower */
|
|
|
|
@media screen and (min-width: 1200px) {
|
|
|
|
body {
|
|
|
|
padding-top: 56px;
|
|
|
|
}
|
|
|
|
}
|
2014-04-03 19:54:06 +02:00
|
|
|
|
2015-05-05 11:48:23 +02:00
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
body {
|
|
|
|
padding-top: 56px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-12 22:09:42 +01:00
|
|
|
</style>
|
2014-04-03 19:54:06 +02:00
|
|
|
|
2014-11-12 22:09:42 +01:00
|
|
|
@include('script')
|
2014-03-27 13:25:31 +01:00
|
|
|
|
2015-04-22 21:21:04 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
function setTheme(id)
|
|
|
|
{
|
|
|
|
$('#theme_id').val(id);
|
|
|
|
$('form.themeForm').submit();
|
|
|
|
}
|
|
|
|
|
|
|
|
@if (!Auth::check() || !Auth::user()->registered)
|
|
|
|
function validateSignUp(showError)
|
|
|
|
{
|
|
|
|
var isFormValid = true;
|
|
|
|
$(['first_name','last_name','email','password']).each(function(i, field) {
|
|
|
|
var $input = $('form.signUpForm #new_'+field),
|
|
|
|
val = $.trim($input.val());
|
|
|
|
var isValid = val && val.length >= (field == 'password' ? 6 : 1);
|
|
|
|
if (isValid && field == 'email') {
|
|
|
|
isValid = isValidEmailAddress(val);
|
|
|
|
}
|
|
|
|
if (isValid) {
|
|
|
|
$input.closest('div.form-group').removeClass('has-error').addClass('has-success');
|
|
|
|
} else {
|
|
|
|
isFormValid = false;
|
|
|
|
$input.closest('div.form-group').removeClass('has-success');
|
|
|
|
if (showError) {
|
|
|
|
$input.closest('div.form-group').addClass('has-error');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!$('#terms_checkbox').is(':checked')) {
|
|
|
|
isFormValid = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#saveSignUpButton').prop('disabled', !isFormValid);
|
|
|
|
|
|
|
|
return isFormValid;
|
|
|
|
}
|
|
|
|
|
|
|
|
function validateServerSignUp()
|
|
|
|
{
|
|
|
|
if (!validateSignUp(true)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#signUpDiv, #signUpFooter').hide();
|
|
|
|
$('#working').show();
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: '{{ URL::to('signup/validate') }}',
|
|
|
|
data: 'email=' + $('form.signUpForm #new_email').val(),
|
|
|
|
success: function(result) {
|
|
|
|
if (result == 'available') {
|
|
|
|
submitSignUp();
|
|
|
|
} else {
|
|
|
|
$('#errorTaken').show();
|
|
|
|
$('form.signUpForm #new_email').closest('div.form-group').removeClass('has-success').addClass('has-error');
|
|
|
|
$('#signUpDiv, #signUpFooter').show();
|
|
|
|
$('#working').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function submitSignUp() {
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: '{{ URL::to('signup/submit') }}',
|
|
|
|
data: 'new_email=' + encodeURIComponent($('form.signUpForm #new_email').val()) +
|
|
|
|
'&new_password=' + encodeURIComponent($('form.signUpForm #new_password').val()) +
|
|
|
|
'&new_first_name=' + encodeURIComponent($('form.signUpForm #new_first_name').val()) +
|
|
|
|
'&new_last_name=' + encodeURIComponent($('form.signUpForm #new_last_name').val()) +
|
|
|
|
'&go_pro=' + $('#go_pro').val(),
|
|
|
|
success: function(result) {
|
|
|
|
if (result) {
|
|
|
|
localStorage.setItem('guest_key', '');
|
|
|
|
trackUrl('/signed_up');
|
|
|
|
NINJA.isRegistered = true;
|
|
|
|
$('#signUpButton').hide();
|
|
|
|
$('#myAccountButton').html(result);
|
|
|
|
}
|
|
|
|
$('#signUpSuccessDiv, #signUpFooter, #closeSignUpButton').show();
|
|
|
|
$('#working, #saveSignUpButton').hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkForEnter(event)
|
|
|
|
{
|
|
|
|
if (event.keyCode === 13){
|
|
|
|
event.preventDefault();
|
|
|
|
validateServerSignUp();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@endif
|
|
|
|
|
|
|
|
function logout(force)
|
|
|
|
{
|
|
|
|
if (force) {
|
|
|
|
NINJA.formIsChanged = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (force || NINJA.isRegistered) {
|
|
|
|
window.location = '{{ URL::to('logout') }}';
|
|
|
|
} else {
|
|
|
|
$('#logoutModal').modal('show');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function showSignUp() {
|
|
|
|
$('#signUpModal').modal('show');
|
|
|
|
}
|
|
|
|
|
|
|
|
function buyProduct(affiliateKey, productId) {
|
|
|
|
window.open('{{ Utils::isNinjaDev() ? '' : NINJA_APP_URL }}/license?affiliate_key=' + affiliateKey + '&product_id=' + productId + '&return_url=' + window.location);
|
|
|
|
}
|
|
|
|
|
|
|
|
@if (Auth::check() && !Auth::user()->isPro())
|
2015-05-08 10:21:29 +02:00
|
|
|
function submitProPlan(feature) {
|
|
|
|
trackUrl('/submit_pro_plan/' + feature);
|
2015-04-22 21:21:04 +02:00
|
|
|
if (NINJA.isRegistered) {
|
|
|
|
$('#proPlanDiv, #proPlanFooter').hide();
|
|
|
|
$('#proPlanWorking').show();
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: '{{ URL::to('account/go_pro') }}',
|
|
|
|
success: function(result) {
|
|
|
|
NINJA.formIsChanged = false;
|
2015-05-08 10:21:29 +02:00
|
|
|
window.location = '/view/' + result;
|
2015-04-22 21:21:04 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$('#proPlanModal').modal('hide');
|
|
|
|
$('#go_pro').val('true');
|
|
|
|
showSignUp();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@endif
|
|
|
|
|
|
|
|
function hideMessage() {
|
|
|
|
$('.alert-info').fadeOut();
|
|
|
|
$.get('/hide_message', function(response) {
|
|
|
|
console.log('Reponse: %s', response);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function wordWrapText(value, width)
|
|
|
|
{
|
|
|
|
@if (Auth::user()->account->auto_wrap)
|
|
|
|
var doc = new jsPDF('p', 'pt');
|
|
|
|
doc.setFont('Helvetica','');
|
|
|
|
doc.setFontSize(10);
|
|
|
|
|
|
|
|
var lines = value.split("\n");
|
|
|
|
for (var i = 0; i < lines.length; i++) {
|
|
|
|
var numLines = doc.splitTextToSize(lines[i], width).length;
|
|
|
|
if (numLines <= 1) continue;
|
|
|
|
var j = 0; space = lines[i].length;
|
|
|
|
while (j++ < lines[i].length) {
|
|
|
|
if (lines[i].charAt(j) === ' ') space = j;
|
|
|
|
}
|
|
|
|
if (space == lines[i].length) space = width/6;
|
|
|
|
lines[i + 1] = lines[i].substring(space + 1) + ' ' + (lines[i + 1] || '');
|
|
|
|
lines[i] = lines[i].substring(0, space);
|
|
|
|
}
|
|
|
|
|
|
|
|
var newValue = (lines.join("\n")).trim();
|
|
|
|
|
|
|
|
if (value == newValue) {
|
|
|
|
return newValue;
|
|
|
|
} else {
|
|
|
|
return wordWrapText(newValue, width);
|
|
|
|
}
|
|
|
|
@else
|
|
|
|
return value;
|
|
|
|
@endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-19 21:14:00 +02:00
|
|
|
// keep the token cookie valid to prevent token mismatch errors
|
|
|
|
function keepAlive() {
|
|
|
|
window.setTimeout(function() {
|
|
|
|
$.get('{{ URL::to('/keep_alive') }}', function(data) {
|
|
|
|
keepAlive();
|
|
|
|
})
|
|
|
|
}, 1000 * 60 * 60);
|
|
|
|
}
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
keepAlive();
|
|
|
|
|
2015-04-22 23:40:21 +02:00
|
|
|
window.setTimeout(function() {
|
|
|
|
$(".alert-hide").fadeOut(500);
|
2015-04-30 19:54:19 +02:00
|
|
|
}, 2000);
|
2015-04-22 23:40:21 +02:00
|
|
|
|
2015-04-22 21:21:04 +02:00
|
|
|
$('#search').focus(function(){
|
|
|
|
if (!window.hasOwnProperty('searchData')) {
|
|
|
|
$.get('{{ URL::route('getSearchData') }}', function(data) {
|
|
|
|
window.searchData = true;
|
|
|
|
var datasets = [];
|
|
|
|
for (var type in data)
|
|
|
|
{
|
|
|
|
if (!data.hasOwnProperty(type)) continue;
|
|
|
|
datasets.push({
|
|
|
|
name: type,
|
|
|
|
header: ' <b>' + type + '</b>',
|
|
|
|
local: data[type]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (datasets.length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$('#search').typeahead(datasets).on('typeahead:selected', function(element, datum, name) {
|
|
|
|
var type = name == 'Contacts' ? 'clients' : name.toLowerCase();
|
|
|
|
window.location = '{{ URL::to('/') }}' + '/' + type + '/' + datum.public_id;
|
|
|
|
}).focus().typeahead('setQuery', $('#search').val());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (isStorageSupported()) {
|
|
|
|
@if (Auth::check() && !Auth::user()->registered)
|
|
|
|
localStorage.setItem('guest_key', '{{ Auth::user()->password }}');
|
|
|
|
@endif
|
|
|
|
}
|
|
|
|
|
|
|
|
@if (!Auth::check() || !Auth::user()->registered)
|
|
|
|
validateSignUp();
|
|
|
|
|
|
|
|
$('#signUpModal').on('shown.bs.modal', function () {
|
|
|
|
trackUrl('/view_sign_up');
|
|
|
|
$(['first_name','last_name','email','password']).each(function(i, field) {
|
|
|
|
var $input = $('form.signUpForm #new_'+field);
|
|
|
|
if (!$input.val()) {
|
|
|
|
$input.focus();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (Auth::check() && !Utils::isNinja() && !Auth::user()->registered)
|
|
|
|
$('#closeSignUpButton').hide();
|
|
|
|
showSignUp();
|
|
|
|
@elseif(Session::get('sign_up') || Input::get('sign_up'))
|
|
|
|
showSignUp();
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@yield('onReady')
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
2013-12-07 19:45:00 +01:00
|
|
|
@stop
|
2013-11-27 08:38:37 +01:00
|
|
|
|
2013-12-07 19:45:00 +01:00
|
|
|
@section('body')
|
2014-04-03 19:54:06 +02:00
|
|
|
|
|
|
|
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<div class="navbar-header">
|
|
|
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1">
|
|
|
|
<span class="sr-only">Toggle navigation</span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
</button>
|
2015-03-17 11:45:48 +01:00
|
|
|
<a href="{{ URL::to(NINJA_WEB_URL) }}" class='navbar-brand'>
|
2014-02-16 21:32:25 +01:00
|
|
|
<img src="{{ asset('images/invoiceninja-logo.png') }}" style="height:18px;width:auto"/>
|
|
|
|
</a>
|
2014-04-03 19:54:06 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="collapse navbar-collapse" id="navbar-collapse-1">
|
|
|
|
<ul class="nav navbar-nav" style="font-weight: bold">
|
2015-03-26 04:48:41 +01:00
|
|
|
{!! HTML::nav_link('dashboard', 'dashboard') !!}
|
|
|
|
{!! HTML::menu_link('client') !!}
|
2015-05-27 18:52:10 +02:00
|
|
|
{!! HTML::menu_link('task') !!}
|
2015-03-26 04:48:41 +01:00
|
|
|
{!! HTML::menu_link('invoice') !!}
|
|
|
|
{!! HTML::menu_link('payment') !!}
|
|
|
|
{!! HTML::menu_link('credit') !!}
|
2014-04-03 19:54:06 +02:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div class="navbar-form navbar-right">
|
2014-05-25 12:57:19 +02:00
|
|
|
@if (Auth::check())
|
|
|
|
@if (!Auth::user()->registered)
|
2015-04-05 21:15:37 +02:00
|
|
|
{!! Button::success(trans('texts.sign_up'))->withAttributes(array('id' => 'signUpButton', 'data-toggle'=>'modal', 'data-target'=>'#signUpModal'))->small() !!}
|
2014-05-25 12:57:19 +02:00
|
|
|
@elseif (!Auth::user()->isPro())
|
2015-05-08 10:21:29 +02:00
|
|
|
{!! Button::success(trans('texts.go_pro'))->withAttributes(array('id' => 'proPlanButton', 'onclick' => 'submitProPlan("")'))->small() !!}
|
2014-05-25 12:57:19 +02:00
|
|
|
@endif
|
2014-04-22 22:10:14 +02:00
|
|
|
@endif
|
2014-03-19 17:17:26 +01:00
|
|
|
|
2014-04-22 22:10:14 +02:00
|
|
|
@if (Auth::user()->getPopOverText() && !Utils::isRegistered())
|
|
|
|
<button id="ninjaPopOver" type="button" class="btn btn-default" data-toggle="popover" data-placement="bottom" data-content="{{ Auth::user()->getPopOverText() }}" data-html="true" style="display:none">
|
2014-04-06 11:02:04 +02:00
|
|
|
{{ trans('texts.sign_up') }}
|
2014-04-03 19:54:06 +02:00
|
|
|
</button>
|
2014-04-22 22:10:14 +02:00
|
|
|
@endif
|
2014-04-03 19:54:06 +02:00
|
|
|
|
2014-04-22 22:10:14 +02:00
|
|
|
@if (Auth::user()->getPopOverText())
|
2014-04-03 19:54:06 +02:00
|
|
|
<script>
|
|
|
|
$(function() {
|
2014-04-25 15:04:57 +02:00
|
|
|
if (screen.width < 1170) return;
|
2014-04-22 22:10:14 +02:00
|
|
|
$('#ninjaPopOver').show().popover('show').hide();
|
2014-04-03 19:54:06 +02:00
|
|
|
$('body').click(function() {
|
2014-04-22 22:10:14 +02:00
|
|
|
$('#ninjaPopOver').popover('hide');
|
2014-04-03 19:54:06 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2014-03-19 17:17:26 +01:00
|
|
|
@endif
|
|
|
|
|
2014-04-03 19:54:06 +02:00
|
|
|
<div class="btn-group">
|
|
|
|
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown">
|
2015-02-12 21:50:05 +01:00
|
|
|
<div id="myAccountButton" class="ellipsis" style="max-width:100px">
|
2014-04-22 22:10:14 +02:00
|
|
|
{{ Auth::user()->getDisplayName() }}
|
2014-11-12 16:22:54 +01:00
|
|
|
<span class="caret"></span>
|
|
|
|
</div>
|
2014-04-03 19:54:06 +02:00
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu" role="menu">
|
2015-03-26 07:24:02 +01:00
|
|
|
<li>{!! link_to('company/details', uctrans('texts.company_details')) !!}</li>
|
|
|
|
<li>{!! link_to('company/payments', uctrans('texts.online_payments')) !!}</li>
|
|
|
|
<li>{!! link_to('company/products', uctrans('texts.product_library')) !!}</li>
|
|
|
|
<li>{!! link_to('company/notifications', uctrans('texts.notifications')) !!}</li>
|
|
|
|
<li>{!! link_to('company/import_export', uctrans('texts.import_export')) !!}</li>
|
2015-04-05 21:15:37 +02:00
|
|
|
<li><a href="{{ url('company/advanced_settings/invoice_settings') }}">{!! uctrans('texts.advanced_settings') . Utils::getProLabel(ACCOUNT_ADVANCED_SETTINGS) !!}</a></li>
|
2014-04-03 19:54:06 +02:00
|
|
|
|
|
|
|
<li class="divider"></li>
|
2015-03-26 07:24:02 +01:00
|
|
|
<li>{!! link_to('#', trans('texts.logout'), array('onclick'=>'logout()')) !!}</li>
|
2014-04-03 19:54:06 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
2014-04-22 22:10:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
@if (Auth::user()->getPopOverText() && Utils::isRegistered())
|
|
|
|
<button id="ninjaPopOver" type="button" class="btn btn-default" data-toggle="popover" data-placement="bottom" data-content="{{ Auth::user()->getPopOverText() }}" data-html="true" style="display:none">
|
|
|
|
{{ Auth::user()->getDisplayName() }}
|
|
|
|
</button>
|
|
|
|
@endif
|
|
|
|
|
2014-04-03 19:54:06 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<form class="navbar-form navbar-right" role="search">
|
|
|
|
<div class="form-group">
|
2015-05-09 20:25:16 +02:00
|
|
|
<input type="text" id="search" style="width: {{ Session::get(SESSION_LOCALE) == 'en' ? 180 : 140 }}px"
|
2015-04-20 16:34:23 +02:00
|
|
|
class="form-control" placeholder="{{ trans('texts.search') }}">
|
2014-04-03 19:54:06 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<ul class="nav navbar-nav navbar-right">
|
|
|
|
<li class="dropdown">
|
2014-11-12 16:22:54 +01:00
|
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
|
|
|
@if (Session::get(SESSION_LOCALE) == 'en')
|
|
|
|
{{ trans('texts.history') }} <b class="caret"></b>
|
|
|
|
@else
|
|
|
|
<span class="glyphicon glyphicon-time" title="{{ trans('texts.history') }}"/>
|
|
|
|
@endif
|
|
|
|
</a>
|
2014-04-03 19:54:06 +02:00
|
|
|
<ul class="dropdown-menu">
|
|
|
|
@if (count(Session::get(RECENTLY_VIEWED)) == 0)
|
|
|
|
<li><a href="#">{{ trans('texts.no_items') }}</a></li>
|
|
|
|
@else
|
|
|
|
@foreach (Session::get(RECENTLY_VIEWED) as $link)
|
|
|
|
<li><a href="{{ $link->url }}">{{ $link->name }}</a></li>
|
|
|
|
@endforeach
|
|
|
|
@endif
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2014-04-23 15:46:52 +02:00
|
|
|
|
|
|
|
|
2014-04-03 19:54:06 +02:00
|
|
|
</div><!-- /.navbar-collapse -->
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
<div class="container">
|
|
|
|
|
2014-03-18 21:43:12 +01:00
|
|
|
@if (Session::has('warning'))
|
2014-04-03 19:54:06 +02:00
|
|
|
<div class="alert alert-warning">{{ Session::get('warning') }}</div>
|
2014-03-18 21:43:12 +01:00
|
|
|
@endif
|
|
|
|
|
2014-02-01 21:01:32 +01:00
|
|
|
@if (Session::has('message'))
|
2015-04-22 23:40:21 +02:00
|
|
|
<div class="alert alert-info alert-hide">
|
2014-10-05 23:00:42 +02:00
|
|
|
{{ Session::get('message') }}
|
|
|
|
</div>
|
|
|
|
@elseif (Session::has('news_feed_message'))
|
|
|
|
<div class="alert alert-info">
|
2015-04-13 09:54:51 +02:00
|
|
|
{!! Session::get('news_feed_message') !!}
|
2014-10-05 23:00:42 +02:00
|
|
|
<a href="#" onclick="hideMessage()" class="pull-right">{{ trans('texts.hide') }}</a>
|
|
|
|
</div>
|
2014-02-01 21:01:32 +01:00
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (Session::has('error'))
|
2014-04-03 19:54:06 +02:00
|
|
|
<div class="alert alert-danger">{{ Session::get('error') }}</div>
|
2014-02-01 21:01:32 +01:00
|
|
|
@endif
|
2013-11-26 13:45:07 +01:00
|
|
|
|
2015-05-27 18:52:10 +02:00
|
|
|
@if (!isset($showBreadcrumbs) || $showBreadcrumbs)
|
|
|
|
{!! HTML::breadcrumbs() !!}
|
|
|
|
@endif
|
|
|
|
|
2014-04-03 19:54:06 +02:00
|
|
|
@yield('content')
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@if (!Auth::check() || !Auth::user()->registered)
|
|
|
|
<div class="modal fade" id="signUpModal" tabindex="-1" role="dialog" aria-labelledby="signUpModalLabel" aria-hidden="true">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
2014-04-06 11:02:04 +02:00
|
|
|
<h4 class="modal-title" id="myModalLabel">{{ trans('texts.sign_up') }}</h4>
|
2014-04-03 19:54:06 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style="background-color: #fff; padding-right:20px" id="signUpDiv" onkeyup="validateSignUp()" onclick="validateSignUp()" onkeydown="checkForEnter(event)">
|
|
|
|
<br/>
|
|
|
|
|
2015-03-26 04:48:41 +01:00
|
|
|
{!! Former::open('signup/submit')->addClass('signUpForm') !!}
|
2014-04-03 19:54:06 +02:00
|
|
|
|
|
|
|
@if (Auth::check())
|
2015-03-26 04:48:41 +01:00
|
|
|
{!! Former::populateField('new_first_name', Auth::user()->first_name) !!}
|
|
|
|
{!! Former::populateField('new_last_name', Auth::user()->last_name) !!}
|
|
|
|
{!! Former::populateField('new_email', Auth::user()->email) !!}
|
2014-04-03 19:54:06 +02:00
|
|
|
@endif
|
|
|
|
|
2014-04-13 10:19:10 +02:00
|
|
|
<div style="display:none">
|
2015-03-26 04:48:41 +01:00
|
|
|
{!! Former::text('path')->value(Request::path()) !!}
|
|
|
|
{!! Former::text('go_pro') !!}
|
2014-04-13 10:19:10 +02:00
|
|
|
</div>
|
|
|
|
|
2015-03-26 04:48:41 +01:00
|
|
|
{!! Former::text('new_first_name')->label(trans('texts.first_name')) !!}
|
|
|
|
{!! Former::text('new_last_name')->label(trans('texts.last_name')) !!}
|
|
|
|
{!! Former::text('new_email')->label(trans('texts.email')) !!}
|
|
|
|
{!! Former::password('new_password')->label(trans('texts.password')) !!}
|
|
|
|
{!! Former::checkbox('terms_checkbox')->label(' ')->text(trans('texts.agree_to_terms', ['terms' => '<a href="'.URL::to('terms').'" target="_blank">'.trans('texts.terms_of_service').'</a>'])) !!}
|
|
|
|
{!! Former::close() !!}
|
2014-03-10 12:04:15 +01:00
|
|
|
|
2014-04-06 11:02:04 +02:00
|
|
|
<center><div id="errorTaken" style="display:none"> <br/>{{ trans('texts.email_taken') }}</div></center>
|
2014-04-03 19:54:06 +02:00
|
|
|
<br/>
|
2014-03-10 12:04:15 +01:00
|
|
|
|
2014-04-03 19:54:06 +02:00
|
|
|
</div>
|
2013-12-02 20:54:24 +01:00
|
|
|
|
2014-04-03 19:54:06 +02:00
|
|
|
<div style="padding-left:40px;padding-right:40px;display:none;min-height:130px" id="working">
|
2014-04-06 11:02:04 +02:00
|
|
|
<h3>{{ trans('texts.working') }}...</h3>
|
2014-04-03 19:54:06 +02:00
|
|
|
<div class="progress progress-striped active">
|
|
|
|
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%"></div>
|
|
|
|
</div>
|
2014-01-30 23:29:09 +01:00
|
|
|
</div>
|
|
|
|
|
2014-02-23 15:51:52 +01:00
|
|
|
<div style="background-color: #fff; padding-right:20px;padding-left:20px; display:none" id="signUpSuccessDiv">
|
2014-04-03 19:54:06 +02:00
|
|
|
<br/>
|
2014-04-06 11:02:04 +02:00
|
|
|
<h3>{{ trans('texts.success') }}</h3>
|
2014-11-11 09:29:43 +01:00
|
|
|
@if (Utils::isNinja())
|
2014-11-19 20:51:53 +01:00
|
|
|
{{ trans('texts.success_message') }}
|
2014-11-11 09:29:43 +01:00
|
|
|
@endif
|
2014-11-19 20:51:53 +01:00
|
|
|
<br/>
|
2014-01-30 23:29:09 +01:00
|
|
|
</div>
|
|
|
|
|
2014-04-03 19:54:06 +02:00
|
|
|
<div class="modal-footer" id="signUpFooter" style="margin-top: 0px">
|
2014-11-11 09:29:43 +01:00
|
|
|
<button type="button" class="btn btn-default" id="closeSignUpButton" data-dismiss="modal">{{ trans('texts.close') }} <i class="glyphicon glyphicon-remove-circle"></i></button>
|
2014-04-10 21:29:01 +02:00
|
|
|
<button type="button" class="btn btn-primary" id="saveSignUpButton" onclick="validateServerSignUp()" disabled>{{ trans('texts.save') }} <i class="glyphicon glyphicon-floppy-disk"></i></button>
|
2014-04-03 19:54:06 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-03-05 21:56:34 +01:00
|
|
|
|
2014-04-03 19:54:06 +02:00
|
|
|
|
|
|
|
<div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="logoutModalLabel" aria-hidden="true">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
2014-04-06 11:02:04 +02:00
|
|
|
<h4 class="modal-title" id="myModalLabel">{{ trans('texts.logout') }}</h4>
|
2014-04-03 19:54:06 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="container">
|
2014-04-06 11:02:04 +02:00
|
|
|
<h3>{{ trans('texts.are_you_sure') }}</h3>
|
|
|
|
<p>{{ trans('texts.erase_data') }}</p>
|
2014-04-03 19:54:06 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-footer" id="signUpFooter">
|
2014-04-06 11:02:04 +02:00
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('texts.cancel') }}</button>
|
|
|
|
<button type="button" class="btn btn-primary" onclick="logout(true)">{{ trans('texts.logout') }}</button>
|
2014-04-03 19:54:06 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2014-04-22 17:10:41 +02:00
|
|
|
@if (Auth::check() && !Auth::user()->isPro())
|
|
|
|
<div class="modal fade" id="proPlanModal" tabindex="-1" role="dialog" aria-labelledby="proPlanModalLabel" aria-hidden="true">
|
2014-07-16 23:04:56 +02:00
|
|
|
<div class="modal-dialog medium-dialog">
|
2014-04-22 17:10:41 +02:00
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
|
|
<h4 class="modal-title" id="proPlanModalLabel">{{ trans('texts.pro_plan_product') }}</h4>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style="background-color: #fff; padding-left: 16px; padding-right: 16px" id="proPlanDiv">
|
2014-05-04 17:49:57 +02:00
|
|
|
<section class="plans">
|
2014-07-16 23:04:56 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<h2>Go Pro to Unlock Premium Invoice Ninja Features</h2>
|
|
|
|
<p>We believe that the free version of Invoice Ninja is a truly awesome product loaded
|
|
|
|
with the key features you need to bill your clients electronically. But for those who
|
|
|
|
crave still more Ninja awesomeness, we've unmasked the Invoice Ninja Pro plan, which
|
|
|
|
offers more versatility, power and customization options for just $50 per year. </p>
|
|
|
|
</div>
|
2014-05-04 17:49:57 +02:00
|
|
|
</div>
|
2014-04-25 15:04:57 +02:00
|
|
|
|
2014-05-08 21:19:33 +02:00
|
|
|
@include('plans')
|
|
|
|
|
2014-04-22 17:10:41 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div style="padding-left:40px;padding-right:40px;display:none;min-height:130px" id="proPlanWorking">
|
|
|
|
<h3>{{ trans('texts.working') }}...</h3>
|
|
|
|
<div class="progress progress-striped active">
|
|
|
|
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style="background-color: #fff; padding-right:20px;padding-left:20px; display:none" id="proPlanSuccess">
|
|
|
|
<br/>
|
|
|
|
{{ trans('texts.pro_plan_success') }}
|
|
|
|
<br/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-footer" style="margin-top: 0px" id="proPlanFooter">
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('texts.close') }}</button>
|
|
|
|
<button type="button" class="btn btn-primary" id="proPlanButton" onclick="submitProPlan()">{{ trans('texts.sign_up') }}</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
@endif
|
|
|
|
|
2014-09-13 23:13:09 +02:00
|
|
|
{{-- Per our license, please do not remove or modify this link. --}}
|
2014-11-16 23:23:11 +01:00
|
|
|
@if (!Utils::isNinja())
|
2014-11-16 21:30:19 +01:00
|
|
|
<div class="container">
|
2014-11-16 22:27:02 +01:00
|
|
|
{{ trans('texts.powered_by') }} <a href="https://www.invoiceninja.com/?utm_source=powered_by" target="_blank">InvoiceNinja.com</a> |
|
2014-11-16 21:30:19 +01:00
|
|
|
@if (Auth::user()->account->isWhiteLabel())
|
|
|
|
{{ trans('texts.white_labeled') }}
|
|
|
|
@else
|
|
|
|
<a href="#" onclick="$('#whiteLabelModal').modal('show');">{{ trans('texts.white_label_link') }}</a>
|
|
|
|
|
|
|
|
<div class="modal fade" id="whiteLabelModal" tabindex="-1" role="dialog" aria-labelledby="whiteLabelModalLabel" aria-hidden="true">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
|
|
<h4 class="modal-title" id="myModalLabel">{{ trans('texts.white_label_header') }}</h4>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style="background-color: #fff; padding:20px">
|
2014-12-03 23:05:38 +01:00
|
|
|
<p>{{ trans('texts.white_label_text')}}</p>
|
2014-11-16 21:30:19 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-footer" id="signUpFooter" style="margin-top: 0px">
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('texts.close') }} </button>
|
2015-03-11 22:37:43 +01:00
|
|
|
{{-- DropdownButton::success_lg(trans('texts.buy'), [
|
|
|
|
['url' => URL::to(""), 'label' => trans('texts.pay_with_paypal')],
|
|
|
|
['url' => URL::to(""), 'label' => trans('texts.pay_with_card')]
|
|
|
|
])->addClass('btn-lg') --}}
|
2014-11-16 21:30:19 +01:00
|
|
|
<button type="button" class="btn btn-primary" onclick="buyProduct('{{ WHITE_LABEL_AFFILIATE_KEY }}', '{{ PRODUCT_WHITE_LABEL }}')">{{ trans('texts.buy') }} </button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div>
|
2014-04-03 19:54:06 +02:00
|
|
|
@endif
|
|
|
|
|
|
|
|
<p> </p>
|
|
|
|
|
2014-03-19 17:17:26 +01:00
|
|
|
|
2013-12-07 19:45:00 +01:00
|
|
|
@stop
|