AY's Macbook Pro hace 3 años
padre
commit
a0f997c699
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  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>