diff --git a/config/app.php b/config/app.php index a11d70d74..b99621370 100644 --- a/config/app.php +++ b/config/app.php @@ -12,7 +12,7 @@ return [ | application. If disabled, a simple generic error page is shown. | */ - 'debug' => env('APP_DEBUG', false), + 'debug' => env('APP_DEBUG', true), /* |-------------------------------------------------------------------------- | Error Log diff --git a/public/lb-faveo/js/angular2.js b/public/lb-faveo/js/angular2.js index 2cb9728a3..093cd0ed0 100644 --- a/public/lb-faveo/js/angular2.js +++ b/public/lb-faveo/js/angular2.js @@ -53,6 +53,9 @@ myApp.controller('MainController', ['$http', '$scope', $scope.Datetimetitle = 'Faveo Date & Time format'; $scope.Datetimecontent = 'What format you want to display date & time in Faveo'; + + $scope.DummyDataTitle = 'Faveo Dummy Data'; + $scope.DummyDataContent = 'Check this chekbox if you want to install and test Faveo with dummy data. You can clear dummy data and start using Faveo in production anytime.'; } ]); diff --git a/resources/views/themes/default1/installer/helpdesk/view3.blade.php b/resources/views/themes/default1/installer/helpdesk/view3.blade.php index 58b8e464b..e21e7abde 100644 --- a/resources/views/themes/default1/installer/helpdesk/view3.blade.php +++ b/resources/views/themes/default1/installer/helpdesk/view3.blade.php @@ -44,7 +44,7 @@ active @endif - {!! Form::open(['url'=> '/step4post']) !!} + {!! Form::open(['url'=> '/step4post', 'id' => 'databaseform']) !!}
@@ -69,7 +69,7 @@ active - + {!! Form::text('host', null, ['required' => true]) !!} - + {!! Form::text('port', null, ['onkeydown' => 'return CheckPortForInput(event)']) !!} - + {!! Form::text('databasename', null, ['required' => true]) !!} - + {!! Form::text('username', null, ['required' => true]) !!} - {!! Form::text('firstname',null,['style' =>'margin-left:250px']) !!} + {!! Form::text('firstname',null,['style' =>'margin-left:250px', 'required' => true]) !!} - {!! Form::text('Lastname',null,['style' =>'margin-left:250px']) !!} + {!! Form::text('Lastname',null,['style' =>'margin-left:250px', 'required' => true]) !!} - {!! Form::text('email',null,['style' =>'margin-left:250px']) !!} + {!! Form::email('email',null,['style' =>'margin-left:250px', 'required' => true]) !!} - {!! Form::text('username',null,['style' =>'margin-left:195px']) !!} + {!! Form::text('username',null,['style' =>'margin-left:195px', 'required' => true]) !!} - + - +
+

- + Previous

@@ -346,5 +348,61 @@ active - + @stop \ No newline at end of file