diff --git a/resources/views/settings/ldap.blade.php b/resources/views/settings/ldap.blade.php index b3070e13e..016d54f48 100644 --- a/resources/views/settings/ldap.blade.php +++ b/resources/views/settings/ldap.blade.php @@ -18,6 +18,15 @@ .checkbox label { padding-right: 40px; } + + /* + Don't make the password field *look* readonly - this is for usability, so admins don't think they can't edit this field. + */ + .form-control[readonly] { + background-color: white; + color: #555555; + cursor:text; + } @if ((!function_exists('ldap_connect')) || (!function_exists('ldap_set_option')) || (!function_exists('ldap_bind'))) @@ -34,10 +43,12 @@ @endif - {{ Form::open(['method' => 'POST', 'files' => false, 'autocomplete' => 'false', 'class' => 'form-horizontal', 'role' => 'form']) }} + {{ Form::open(['method' => 'POST', 'files' => false, 'autocomplete' => 'off', 'class' => 'form-horizontal', 'role' => 'form']) }} {{csrf_field()}} + + @@ -54,7 +65,6 @@
{{ trans('general.feature_disabled') }}
@@ -244,7 +254,7 @@ {{ Form::label('ldap_pword', trans('admin/settings/general.ldap_pword')) }}{{ trans('general.feature_disabled') }}
@@ -538,7 +548,7 @@