mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
37 lines
887 B
PHP
37 lines
887 B
PHP
|
@extends('master')
|
||
|
|
||
|
@section('body')
|
||
|
|
||
|
{!! Form::open(array('url' => 'get_started', 'id' => 'startForm')) !!}
|
||
|
{!! Form::hidden('guest_key') !!}
|
||
|
{!! Form::hidden('sign_up', Input::get('sign_up')) !!}
|
||
|
{!! Form::hidden('redirect_to', Input::get('redirect_to')) !!}
|
||
|
{!! Form::close() !!}
|
||
|
|
||
|
<script>
|
||
|
if (isStorageSupported()) {
|
||
|
$('[name="guest_key"]').val(localStorage.getItem('guest_key'));
|
||
|
}
|
||
|
|
||
|
$(function() {
|
||
|
$('#startForm').submit();
|
||
|
})
|
||
|
|
||
|
function isStorageSupported() {
|
||
|
if ('localStorage' in window && window['localStorage'] !== null) {
|
||
|
var storage = window.localStorage;
|
||
|
} else {
|
||
|
return false;
|
||
|
}
|
||
|
var testKey = 'test';
|
||
|
try {
|
||
|
storage.setItem(testKey, '1');
|
||
|
storage.removeItem(testKey);
|
||
|
return true;
|
||
|
} catch (error) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
@stop
|