1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/resources/views/header.blade.php

755 lines
27 KiB
PHP
Raw Normal View History

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
2016-07-21 14:35:23 +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
<style type="text/css">
2015-07-12 21:43:45 +02:00
@if (Auth::check() && Auth::user()->dark_mode)
body {
background: #000 !important;
color: white !important;
}
.panel-body {
background: #272822 !important;
/*background: #e6e6e6 !important;*/
}
.panel-default {
border-color: #444;
}
@endif
</style>
2014-04-03 19:54:06 +02:00
2015-04-22 21:21:04 +02:00
<script type="text/javascript">
@if (!Auth::check() || !Auth::user()->registered)
2016-05-15 22:16:08 +02:00
function validateSignUp(showError)
2015-04-22 21:21:04 +02:00
{
var isFormValid = true;
$(['first_name','last_name','email','password']).each(function(i, field) {
var $input = $('form.signUpForm #new_'+field),
2016-05-15 22:16:08 +02:00
val = $.trim($input.val());
2015-04-22 21:21:04 +02:00
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(),
2016-05-15 22:16:08 +02:00
success: function(result) {
if (result == 'available') {
2015-04-22 21:21:04 +02:00
submitSignUp();
} else {
$('#errorTaken').show();
$('form.signUpForm #new_email').closest('div.form-group').removeClass('has-success').addClass('has-error');
$('#signUpDiv, #signUpFooter').show();
$('#working').hide();
}
}
2016-05-15 22:16:08 +02:00
});
2015-04-22 21:21:04 +02:00
}
function submitSignUp() {
$.ajax({
type: 'POST',
url: '{{ URL::to('signup/submit') }}',
2016-05-15 22:16:08 +02:00
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()) +
2015-04-22 21:21:04 +02:00
'&new_last_name=' + encodeURIComponent($('form.signUpForm #new_last_name').val()) +
'&go_pro=' + $('#go_pro').val(),
2016-05-15 22:16:08 +02:00
success: function(result) {
2015-04-22 21:21:04 +02:00
if (result) {
2015-11-01 19:21:11 +01:00
handleSignedUp();
2015-04-22 21:21:04 +02:00
NINJA.isRegistered = true;
$('#signUpButton').hide();
2015-11-01 19:21:11 +01:00
$('#myAccountButton').html(result);
}
2015-04-22 21:21:04 +02:00
$('#signUpSuccessDiv, #signUpFooter, #closeSignUpButton').show();
$('#working, #saveSignUpButton').hide();
}
2015-11-01 19:21:11 +01:00
});
}
2015-10-20 10:23:38 +02:00
@endif
2015-11-01 19:21:11 +01:00
function handleSignedUp() {
localStorage.setItem('guest_key', '');
fbq('track', 'CompleteRegistration');
trackEvent('/account', '/signed_up');
}
2015-04-22 21:21:04 +02:00
function checkForEnter(event)
{
if (event.keyCode === 13){
2016-05-15 22:16:08 +02:00
event.preventDefault();
2015-04-22 21:21:04 +02:00
validateServerSignUp();
return false;
}
}
function logout(force)
{
if (force) {
NINJA.formIsChanged = false;
}
2016-05-15 22:16:08 +02:00
if (force || NINJA.isRegistered) {
2015-04-22 21:21:04 +02:00
window.location = '{{ URL::to('logout') }}';
} else {
2016-05-15 22:16:08 +02:00
$('#logoutModal').modal('show');
2015-04-22 21:21:04 +02:00
}
}
2015-10-11 16:41:09 +02:00
function showSignUp() {
$('#signUpModal').modal('show');
}
function hideSignUp() {
$('#signUpModal').modal('hide');
2015-04-22 21:21:04 +02:00
}
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-10-11 16:41:09 +02:00
function setSignupEnabled(enabled) {
2015-11-01 19:21:11 +01:00
$('.signup-form input[type=text]').prop('disabled', !enabled);
if (enabled) {
$('.signup-form a.btn').removeClass('disabled');
} else {
$('.signup-form a.btn').addClass('disabled');
}
2015-10-11 16:41:09 +02:00
}
2015-10-18 09:30:28 +02:00
function setSocialLoginProvider(provider) {
localStorage.setItem('auth_provider', provider);
}
window.loadedSearchData = false;
2016-09-19 11:12:22 +02:00
function onSearchBlur() {
$('#search').typeahead('val', '');
}
2016-08-23 22:20:03 +02:00
function onSearchFocus() {
2016-02-19 10:41:03 +01:00
$('#search-form').show();
2016-05-15 22:16:08 +02:00
if (!window.loadedSearchData) {
2016-08-23 22:20:03 +02:00
window.loadedSearchData = true;
2015-10-11 16:41:09 +02:00
trackEvent('/activity', '/search');
var request = $.get('{{ URL::route('get_search_data') }}', function(data) {
2016-02-28 21:43:43 +01:00
$('#search').typeahead({
hint: true,
highlight: true,
}
@if (Auth::check() && Auth::user()->account->custom_client_label1)
,{
name: 'data',
2016-04-10 14:44:45 +02:00
limit: 3,
display: 'value',
source: searchData(data['{{ Auth::user()->account->custom_client_label1 }}'], 'tokens'),
templates: {
header: '&nbsp;<span style="font-weight:600;font-size:16px">{{ Auth::user()->account->custom_client_label1 }}</span>'
}
2016-05-15 22:16:08 +02:00
}
@endif
@if (Auth::check() && Auth::user()->account->custom_client_label2)
,{
name: 'data',
2016-04-10 14:44:45 +02:00
limit: 3,
display: 'value',
source: searchData(data['{{ Auth::user()->account->custom_client_label2 }}'], 'tokens'),
templates: {
header: '&nbsp;<span style="font-weight:600;font-size:16px">{{ Auth::user()->account->custom_client_label2 }}</span>'
}
2016-05-15 22:16:08 +02:00
}
@endif
@foreach (['clients', 'contacts', 'invoices', 'quotes', 'navigation'] as $type)
,{
2016-02-28 21:43:43 +01:00
name: 'data',
2016-04-10 14:44:45 +02:00
limit: 3,
2016-02-28 21:43:43 +01:00
display: 'value',
source: searchData(data['{{ $type }}'], 'tokens', true),
2016-02-28 21:43:43 +01:00
templates: {
header: '&nbsp;<span style="font-weight:600;font-size:16px">{{ trans("texts.{$type}") }}</span>'
2016-02-28 21:43:43 +01:00
}
}
@endforeach
).on('typeahead:selected', function(element, datum, name) {
2016-02-22 22:23:28 +01:00
window.location = datum.url;
2016-05-15 22:16:08 +02:00
}).focus();
2015-04-22 21:21:04 +02:00
});
2016-07-04 09:59:30 +02:00
request.error(function(httpObj, textStatus) {
// if the session has expried show login page
if (httpObj.status == 401) {
location.reload();
}
});
2016-02-15 18:58:18 +01:00
}
}
2016-05-15 22:16:08 +02:00
2016-02-15 18:58:18 +01:00
$(function() {
2016-05-15 22:16:08 +02:00
window.setTimeout(function() {
2016-02-15 18:58:18 +01:00
$(".alert-hide").fadeOut();
}, 3000);
2016-07-11 19:08:43 +02:00
/* Set the defaults for Bootstrap datepicker */
$.extend(true, $.fn.datepicker.defaults, {
2016-07-31 20:47:29 +02:00
//language: '{{ $appLanguage }}', // causes problems with some languages (ie, fr_CA) if the date includes strings (ie, July 31, 2016)
2016-07-11 19:08:43 +02:00
weekStart: {{ Session::get('start_of_week') }}
});
2015-04-22 21:21:04 +02:00
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 () {
2015-06-01 15:06:18 +02:00
trackEvent('/account', '/view_sign_up');
2015-04-22 21:21:04 +02:00
$(['first_name','last_name','email','password']).each(function(i, field) {
var $input = $('form.signUpForm #new_'+field);
if (!$input.val()) {
2016-05-15 22:16:08 +02:00
$input.focus();
2015-04-22 21:21:04 +02:00
return false;
}
});
})
@endif
@if (Auth::check() && !Utils::isNinja() && !Auth::user()->registered)
$('#closeSignUpButton').hide();
2016-05-15 22:16:08 +02:00
showSignUp();
2015-04-22 21:21:04 +02:00
@elseif(Session::get('sign_up') || Input::get('sign_up'))
showSignUp();
@endif
2016-02-17 11:12:39 +01:00
$('ul.navbar-settings, ul.navbar-search').hover(function () {
2015-07-12 21:43:45 +02:00
if ($('.user-accounts').css('display') == 'block') {
$('.user-accounts').dropdown('toggle');
}
});
2015-04-22 21:21:04 +02:00
@yield('onReady')
2015-08-14 14:04:33 +02:00
@if (Input::has('focus'))
$('#{{ Input::get('focus') }}').focus();
@endif
2015-10-11 16:41:09 +02:00
// Ensure terms is checked for sign up form
@if (Auth::check() && !Auth::user()->registered)
setSignupEnabled(false);
$("#terms_checkbox").change(function() {
setSignupEnabled(this.checked);
});
@endif
// Focus the search input if the user clicks forward slash
2016-08-23 22:20:03 +02:00
$('#search').focusin(onSearchFocus);
2016-09-19 11:12:22 +02:00
$('#search').blur(onSearchBlur);
2016-08-23 22:20:03 +02:00
$('body').keypress(function(event) {
if (event.which == 47 && !$('*:focus').length) {
2016-02-19 10:41:03 +01:00
event.preventDefault();
2016-08-23 22:20:03 +02:00
$('#search').focus();
}
});
2016-08-23 22:20:03 +02:00
// manage sidebar state
2016-08-23 19:28:45 +02:00
$("#left-menu-toggle").click(function(e) {
e.preventDefault();
2016-08-31 11:58:31 +02:00
$("#wrapper").toggleClass("toggled-left");
var toggled = $("#wrapper").hasClass("toggled-left") ? '1' : '0';
2016-08-23 22:20:03 +02:00
$.get('{{ url('save_sidebar_state') }}?show_left=' + toggled);
2016-08-23 19:28:45 +02:00
});
2016-08-23 22:20:03 +02:00
2016-08-31 11:58:31 +02:00
$("#right-menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled-right");
var toggled = $("#wrapper").hasClass("toggled-right") ? '1' : '0';
$.get('{{ url('save_sidebar_state') }}?show_right=' + toggled);
});
2016-09-05 14:28:59 +02:00
if (window.location.hash) {
setTimeout(function() {
$('.nav-tabs a[href="' + window.location.hash + '"]').tab('show');
}, 1);
}
2016-09-05 20:51:00 +02:00
$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
var target = $(e.target).attr("href") // activated tab
2016-09-12 07:51:41 +02:00
if (history.pushState) {
history.pushState(null, null, target);
}
2016-09-05 20:51:00 +02:00
});
2015-04-22 21:21:04 +02:00
});
2016-05-15 22:16:08 +02:00
</script>
2015-04-22 21:21:04 +02:00
2013-12-07 19:45:00 +01:00
@stop
2013-12-07 19:45:00 +01:00
@section('body')
2014-04-03 19:54:06 +02:00
2016-10-18 17:01:33 +02:00
@if ( ! Request::is('settings/account_management'))
@include('partials.upgrade_modal')
@endif
2016-10-16 15:38:04 +02:00
2016-08-23 19:28:45 +02:00
<nav class="navbar navbar-default navbar-fixed-top" role="navigation" style="height:60px;">
2014-04-03 19:54:06 +02:00
<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>
2016-09-01 17:52:26 +02:00
<a href="#" id="left-menu-toggle" class="menu-toggle" title="{{ trans('texts.toggle_navigation') }}">
<div class="navbar-brand">
2016-09-01 17:57:04 +02:00
<i class="fa fa-bars hide-phone" style="width:32px;padding-top:2px;float:left"></i>
2016-09-01 17:52:26 +02:00
{{-- Per our license, please do not remove or modify this link. --}}
<img src="{{ asset('images/invoiceninja-logo.png') }}" width="193" height="25" style="float:left"/>
</div>
</a>
2014-04-03 19:54:06 +02:00
</div>
2016-09-01 17:52:26 +02:00
<a id="right-menu-toggle" class="menu-toggle hide-phone pull-right" title="{{ trans('texts.toggle_history') }}" style="cursor:pointer">
2016-09-01 17:57:04 +02:00
<div class="fa fa-bars"></div>
2016-09-01 17:52:26 +02:00
</a>
2014-04-03 19:54:06 +02:00
<div class="collapse navbar-collapse" id="navbar-collapse-1">
2016-09-01 17:52:26 +02:00
<div class="navbar-form navbar-right">
2016-08-23 12:42:17 +02:00
2014-05-25 12:57:19 +02:00
@if (Auth::check())
@if (!Auth::user()->registered)
2016-02-15 18:58:18 +01:00
{!! Button::success(trans('texts.sign_up'))->withAttributes(array('id' => 'signUpButton', 'data-toggle'=>'modal', 'data-target'=>'#signUpModal', 'style' => 'max-width:100px;;overflow:hidden'))->small() !!} &nbsp;
@elseif (Utils::isNinjaProd() && (!Auth::user()->isPro() || Auth::user()->isTrial()))
2016-10-16 15:38:04 +02:00
{!! Button::success(trans('texts.plan_upgrade'))->withAttributes(array('onclick' => 'showUpgradeModal()', 'style' => 'max-width:100px;overflow:hidden'))->small() !!} &nbsp;
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
2015-06-16 21:35:35 +02:00
<div class="btn-group user-dropdown">
2014-04-03 19:54:06 +02:00
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown">
2016-08-23 22:20:03 +02:00
<div id="myAccountButton" class="ellipsis" style="max-width:{{ Utils::hasFeature(FEATURE_USERS) ? '130' : '100' }}px;">
2015-06-16 21:35:35 +02:00
@if (session(SESSION_USER_ACCOUNTS) && count(session(SESSION_USER_ACCOUNTS)))
{{ Auth::user()->account->getDisplayName() }}
@else
{{ Auth::user()->getDisplayName() }}
@endif
2014-11-12 16:22:54 +01:00
<span class="caret"></span>
</div>
2016-05-15 22:16:08 +02:00
</button>
2015-08-03 09:15:58 +02:00
<ul class="dropdown-menu user-accounts">
2015-06-16 21:35:35 +02:00
@if (session(SESSION_USER_ACCOUNTS))
@foreach (session(SESSION_USER_ACCOUNTS) as $item)
2015-07-07 22:08:16 +02:00
@if ($item->user_id == Auth::user()->id)
@include('user_account', [
'user_account_id' => $item->id,
'user_id' => $item->user_id,
'account_name' => $item->account_name,
'user_name' => $item->user_name,
'logo_url' => isset($item->logo_url) ? $item->logo_url : "",
2015-07-07 22:08:16 +02:00
'selected' => true,
])
@endif
@endforeach
@foreach (session(SESSION_USER_ACCOUNTS) as $item)
@if ($item->user_id != Auth::user()->id)
@include('user_account', [
'user_account_id' => $item->id,
'user_id' => $item->user_id,
'account_name' => $item->account_name,
'user_name' => $item->user_name,
'logo_url' => isset($item->logo_url) ? $item->logo_url : "",
2015-07-07 22:08:16 +02:00
'selected' => false,
])
@endif
2015-06-16 21:35:35 +02:00
@endforeach
@else
2015-07-07 22:08:16 +02:00
@include('user_account', [
2016-05-15 22:16:08 +02:00
'account_name' => Auth::user()->account->name ?: trans('texts.untitled'),
2015-07-07 22:08:16 +02:00
'user_name' => Auth::user()->getDisplayName(),
'logo_url' => Auth::user()->account->getLogoURL(),
2015-07-07 22:08:16 +02:00
'selected' => true,
])
2016-05-15 22:16:08 +02:00
@endif
2016-03-16 00:08:00 +01:00
<li class="divider"></li>
@if (Utils::isAdmin())
@if (count(session(SESSION_USER_ACCOUNTS)) > 1)
<li>{!! link_to('/manage_companies', trans('texts.manage_companies')) !!}</li>
@elseif (!session(SESSION_USER_ACCOUNTS) || count(session(SESSION_USER_ACCOUNTS)) < 5)
<li>{!! link_to('/login?new_company=true', trans('texts.add_company')) !!}</li>
@endif
2015-08-03 09:15:58 +02:00
@endif
2015-06-16 21:35:35 +02:00
<li>{!! link_to('#', trans('texts.logout'), array('onclick'=>'logout()')) !!}</li>
</ul>
</div>
2016-05-15 22:16:08 +02:00
</div>
2016-08-23 12:42:17 +02:00
<form id="search-form" class="navbar-form navbar-right" role="search">
<div class="form-group">
<input type="text" id="search" style="width: 240px;padding-top:0px;padding-bottom:0px"
class="form-control" placeholder="{{ trans('texts.search') . ': ' . trans('texts.search_hotkey')}}">
</div>
</form>
@if (false && Utils::isAdmin())
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
2016-08-23 12:42:17 +02:00
@section('self-updater')
<a href="{{ URL::to('self-update') }}" class="dropdown-toggle">
<span class="glyphicon glyphicon-cloud-download" title="{{ trans('texts.update_invoiceninja_title') }}"></span>
</a>
@show
</li>
</ul>
@endif
2016-08-23 22:20:03 +02:00
<ul class="nav navbar-nav hide-non-phone" style="font-weight: bold">
@foreach ([
'dashboard' => false,
'clients' => false,
2016-09-23 16:00:47 +02:00
'products' => false,
'invoices' => false,
'payments' => false,
'recurring_invoices' => 'recurring',
2016-08-23 22:20:03 +02:00
'credits' => false,
2016-09-23 16:00:47 +02:00
'quotes' => false,
2016-08-23 22:20:03 +02:00
'tasks' => false,
'expenses' => false,
'vendors' => false,
'settings' => false,
] as $key => $value)
{!! Form::nav_link($key, $value ?: $key) !!}
@endforeach
</ul>
2016-08-23 12:42:17 +02:00
</div><!-- /.navbar-collapse -->
2014-04-03 19:54:06 +02:00
2016-08-23 12:42:17 +02:00
</nav>
2016-08-31 11:58:31 +02:00
<div id="wrapper" class='{!! session(SESSION_LEFT_SIDEBAR) ? 'toggled-left' : '' !!} {!! session(SESSION_RIGHT_SIDEBAR, true) ? 'toggled-right' : '' !!}'>
2016-08-23 12:42:17 +02:00
<!-- Sidebar -->
2016-09-01 17:52:26 +02:00
<div id="left-sidebar-wrapper" class="hide-phone">
2016-08-31 21:10:41 +02:00
<ul class="sidebar-nav">
2016-08-23 12:42:17 +02:00
@foreach([
2016-08-31 21:10:41 +02:00
'dashboard',
'clients',
2016-09-23 16:00:47 +02:00
'products',
2016-08-31 21:10:41 +02:00
'invoices',
'payments',
'recurring_invoices',
'credits',
'quotes',
'tasks',
'expenses',
'vendors',
'settings',
2016-10-05 12:57:59 +02:00
//'self-update'
2016-08-31 21:10:41 +02:00
] as $option)
<li class="{{ Request::is("{$option}*") ? 'active' : '' }}">
2016-09-02 16:53:16 +02:00
@if ($option == 'settings')
<a type="button" class="btn btn-default btn-sm pull-right"
2016-09-21 15:18:26 +02:00
href="{{ Utils::getDocsUrl(request()->path()) }}" target="_blank">
2016-09-02 16:53:16 +02:00
<i class="fa fa-question-circle" style="width:20px" title="{{ trans('texts.help') }}"></i>
</a>
@elseif ($option != 'dashboard')
2016-08-31 11:58:31 +02:00
@if (Auth::user()->can('create', substr($option, 0, -1)))
2016-09-02 16:53:16 +02:00
<a type="button" class="btn btn-primary btn-sm pull-right"
2016-08-31 11:58:31 +02:00
href="{{ url("/{$option}/create") }}">
2016-08-31 21:10:41 +02:00
<i class="fa fa-plus-circle" style="width:20px" title="{{ trans('texts.create_new') }}"></i>
2016-08-31 11:58:31 +02:00
</a>
@endif
@endif
<a href="{{ url($option == 'recurring' ? 'recurring_invoice' : $option) }}"
2016-08-23 19:28:45 +02:00
style="font-size:16px; padding-top:6px; padding-bottom:6px"
2016-08-23 12:42:17 +02:00
class="{{ Request::is("{$option}*") ? 'active' : '' }}">
2016-08-31 21:10:41 +02:00
<i class="fa fa-{{ \App\Models\EntityModel::getIcon($option) }}" style="width:46px; padding-right:10px"></i>
2016-08-23 19:28:45 +02:00
{{ ($option == 'recurring_invoices') ? trans('texts.recurring') : trans("texts.{$option}") }}
2016-09-22 11:46:47 +02:00
@if (false && $option == 'self-update' && Updater::source()->isNewVersionAvailable('v'.NINJA_VERSION))
<span class="badge alert-danger">1</span>
@endif
2016-08-31 11:58:31 +02:00
</a>
2016-08-23 12:42:17 +02:00
</li>
@endforeach
</ul>
</div>
2016-08-31 11:58:31 +02:00
<!-- /#left-sidebar-wrapper -->
2016-09-02 16:53:16 +02:00
<div id="right-sidebar-wrapper" class="hide-phone" style="overflow-y:hidden">
2016-08-31 21:10:41 +02:00
<ul class="sidebar-nav">
2016-09-01 17:52:26 +02:00
{!! \App\Libraries\HistoryUtils::renderHtml(Auth::user()->account_id) !!}
2016-08-31 21:10:41 +02:00
</ul>
2016-08-31 11:58:31 +02:00
</div>
2014-04-03 19:54:06 +02:00
2016-08-23 12:42:17 +02:00
<!-- Page Content -->
<div id="page-content-wrapper">
<div class="container-fluid">
2016-02-15 18:58:18 +01:00
2016-08-23 22:20:03 +02:00
@include('partials.warn_session', ['redirectTo' => '/dashboard'])
2016-05-15 22:16:08 +02:00
2016-08-23 22:20:03 +02:00
@if (Session::has('warning'))
<div class="alert alert-warning">{!! Session::get('warning') !!}</div>
@endif
2016-05-15 22:16:08 +02:00
2016-08-23 22:20:03 +02:00
@if (Session::has('message'))
<div class="alert alert-info alert-hide">
{{ Session::get('message') }}
</div>
@elseif (Session::has('news_feed_message'))
<div class="alert alert-info">
{!! Session::get('news_feed_message') !!}
<a href="#" onclick="hideMessage()" class="pull-right">{{ trans('texts.hide') }}</a>
</div>
@endif
2014-04-03 19:54:06 +02:00
2016-08-23 22:20:03 +02:00
@if (Session::has('error'))
<div class="alert alert-danger">{!! Session::get('error') !!}</div>
@endif
2014-04-03 19:54:06 +02:00
2016-08-23 22:20:03 +02:00
@if (!isset($showBreadcrumbs) || $showBreadcrumbs)
2016-10-18 16:55:07 +02:00
{!! Form::breadcrumbs((isset($entity) && $entity->exists) ? $entity->present()->statusLabel : false) !!}
2016-08-23 22:20:03 +02:00
@endif
2014-04-03 19:54:06 +02:00
2016-08-23 22:20:03 +02:00
@yield('content')
2016-09-01 17:52:26 +02:00
<br/>
2016-08-23 22:20:03 +02:00
<div class="row">
<div class="col-md-12">
2015-09-26 23:08:59 +02:00
2016-08-23 22:20:03 +02:00
@if (Utils::isNinjaProd())
@if (Auth::check() && Auth::user()->isTrial())
{!! trans(Auth::user()->account->getCountTrialDaysLeft() == 0 ? 'texts.trial_footer_last_day' : 'texts.trial_footer', [
'count' => Auth::user()->account->getCountTrialDaysLeft(),
2016-10-16 15:38:04 +02:00
'link' => '<a href="javascript:showUpgradeModal()">' . trans('texts.click_here') . '</a>'
2016-08-23 22:20:03 +02:00
]) !!}
@endif
@else
2016-10-20 20:35:59 +02:00
@include('partials.white_label')
2016-08-23 22:20:03 +02:00
@endif
</div>
2016-08-23 12:42:17 +02:00
</div>
2016-08-23 22:20:03 +02:00
2014-10-05 23:00:42 +02:00
</div>
2016-08-23 12:42:17 +02:00
<!-- /#page-content-wrapper -->
2014-04-03 19:54:06 +02:00
</div>
2016-08-23 12:42:17 +02:00
2014-04-03 19:54:06 +02:00
@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">&times;</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-11-09 15:53:18 +01:00
{!! Former::open('signup/submit')->addClass('signUpForm')->autocomplete('on') !!}
2014-04-03 19:54:06 +02:00
@if (Auth::check())
{!! 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">
{!! Former::text('path')->value(Request::path()) !!}
{!! Former::text('go_pro') !!}
2014-04-13 10:19:10 +02:00
</div>
2016-05-15 22:16:08 +02:00
2015-10-11 16:41:09 +02:00
<div class="row signup-form">
<div class="col-md-11 col-md-offset-1">
{!! 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>']))->raw() !!}
<br/>
</div>
2015-11-01 19:21:11 +01:00
@if (Utils::isOAuthEnabled())
2015-10-11 16:41:09 +02:00
<div class="col-md-4 col-md-offset-1">
<h4>{{ trans('texts.sign_up_using') }}</h4><br/>
2015-10-18 09:30:28 +02:00
@foreach (App\Services\AuthService::$providers as $provider)
2016-05-15 22:16:08 +02:00
<a href="{{ URL::to('auth/' . $provider) }}" class="btn btn-primary btn-block"
2015-10-18 09:30:28 +02:00
onclick="setSocialLoginProvider('{{ strtolower($provider) }}')" id="{{ strtolower($provider) }}LoginButton">
<i class="fa fa-{{ strtolower($provider) }}"></i> &nbsp;
{{ $provider }}
</a>
@endforeach
2015-10-11 16:41:09 +02:00
</div>
<div class="col-md-1">
<div style="border-right:thin solid #CCCCCC;height:110px;width:8px;margin-bottom:10px;"></div>
{{ trans('texts.or') }}
<div style="border-right:thin solid #CCCCCC;height:110px;width:8px;margin-top:10px;"></div>
</div>
<div class="col-md-6">
2016-05-15 22:16:08 +02:00
@else
2015-10-11 16:41:09 +02:00
<div class="col-md-12">
@endif
{{ Former::setOption('TwitterBootstrap3.labelWidths.large', 1) }}
{{ Former::setOption('TwitterBootstrap3.labelWidths.small', 1) }}
2016-05-15 22:16:08 +02:00
2015-11-09 15:53:18 +01:00
{!! Former::text('new_first_name')
->placeholder(trans('texts.first_name'))
->autocomplete('given-name')
->label(' ') !!}
{!! Former::text('new_last_name')
->placeholder(trans('texts.last_name'))
->autocomplete('family-name')
->label(' ') !!}
{!! Former::text('new_email')
->placeholder(trans('texts.email'))
->autocomplete('email')
->label(' ') !!}
{!! Former::password('new_password')
->placeholder(trans('texts.password'))
->label(' ') !!}
2016-05-15 22:16:08 +02:00
2015-10-11 16:41:09 +02:00
{{ Former::setOption('TwitterBootstrap3.labelWidths.large', 4) }}
{{ Former::setOption('TwitterBootstrap3.labelWidths.small', 4) }}
</div>
<div class="col-md-11 col-md-offset-1">
@if (Utils::isNinja())
<div style="padding-top:20px;padding-bottom:10px;">{{ trans('texts.trial_message') }}</div>
@endif
</div>
2015-10-11 16:41:09 +02:00
</div>
{!! Former::close() !!}
2016-05-15 22:16:08 +02:00
2014-04-06 11:02:04 +02:00
<center><div id="errorTaken" style="display:none">&nbsp;<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/>&nbsp;
2014-01-30 23:29:09 +01:00
</div>
2016-05-15 22:16:08 +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">&times;</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>
2016-05-15 22:16:08 +02:00
<div class="container">
2014-04-06 11:02:04 +02:00
<h3>{{ trans('texts.are_you_sure') }}</h3>
2016-05-15 22:16:08 +02:00
<p>{{ trans('texts.erase_data') }}</p>
2014-04-03 19:54:06 +02:00
</div>
2016-05-15 22:16:08 +02:00
<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>
2016-05-15 22:16:08 +02:00
<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
2015-10-14 16:15:39 +02:00
</div>
2014-04-03 19:54:06 +02:00
<p>&nbsp;</p>
2014-03-19 17:17:26 +01:00
2016-05-10 21:41:30 +02:00
@stop