diff --git a/resources/views/settings/google.blade.php b/resources/views/settings/google.blade.php new file mode 100644 index 0000000000..ccd5a10788 --- /dev/null +++ b/resources/views/settings/google.blade.php @@ -0,0 +1,100 @@ +@extends('layouts/default') + +{{-- Page title --}} +@section('title') + Google + @parent +@stop + +@section('header_right') + {{ trans('general.back') }} +@stop + + +{{-- Page content --}} +@section('content') + + + + {{ Form::open(['method' => 'POST', 'files' => false, 'autocomplete' => 'off', 'class' => 'form-horizontal', 'role' => 'form' ]) }} + + {{csrf_field()}} + +
+
+ + +
+
+

+ Google +

+
+
+ + +
+ + +
+
+ {{ Form::label('google_login', 'Google Login') }} +
+
+ +
+
+ + + +
+
+ {{ Form::label('google_client_id', 'Client ID') }} +
+
+ {{ Form::text('google_client_id', Request::old('google_client_id', $setting->google_client_id), ['class' => 'form-control','placeholder' => trans('general.example') .'000000000000-XXXXXXXXXXX.apps.googleusercontent.com', $setting->demoMode]) }} + {!! $errors->first('google_client_id', '') !!} + @if (config('app.lock_passwords')===true) +

{{ trans('general.feature_disabled') }}

+ @endif +
+
+ + +
+
+ {{ Form::label('google_client_secret', 'Client Secret') }} +
+
+ {{ Form::text('google_client_secret', Request::old('google_client_secret', $setting->google_client_secret), ['class' => 'form-control','placeholder' => trans('general.example') .'XXXXXXXXXXXX', $setting->demoMode]) }} + {!! $errors->first('google_client_secret', '') !!} + @if (config('app.lock_passwords')===true) +

{{ trans('general.feature_disabled') }}

+ @endif +
+
+ +
+ + +
+ +
+
+
+ + {{Form::close()}} + +@stop