AY's Macbook Pro 3 лет назад
Родитель
Сommit
a0f997c699
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      web/SystemAO/advance/ldap.html

+ 3 - 1
web/SystemAO/advance/ldap.html

@@ -88,7 +88,7 @@
             <div class="field">
                 <label>Bind Password</label>
                 <div class="ui fluid input">
-                    <input type="text" id="bind_password" placeholder="p@ssw0rd">
+                    <input type="password" id="bind_password" placeholder="p@ssw0rd">
                 </div>
             </div>
             <div class="field">
@@ -197,6 +197,7 @@
         }
 
         function syncorize() {
+            $("#sync_btn").text("Syncorizing...");
             $.get("../../system/auth/ldap/config/syncorizeUser")
                 .done(function(data) {
                     if (data.error != undefined) {
@@ -205,6 +206,7 @@
                         //OK!
                         $("#updateSet").stop().finish().slideDown("fast").delay(3000).slideUp('fast');
                     }
+                    $("#sync_btn").text("Syncorize User");
                 });
         }
     </script>