Selaa lähdekoodia

modify password field

andre 4 vuotta sitten
vanhempi
commit
5ecca413aa
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      check_configure_thurvserver.tpl

+ 2 - 2
check_configure_thurvserver.tpl

@@ -85,11 +85,11 @@
     function toggleViewPW(element) {
     function toggleViewPW(element) {
         if (element.previousElementSibling.type == 'password') {
         if (element.previousElementSibling.type == 'password') {
             element.previousElementSibling.type = 'text';
             element.previousElementSibling.type = 'text';
-            element.textContent = '👁 Passwort verstecken';
+            element.textContent = "👁 Passwort verstecken";
         }
         }
         if (element.previousElementSibling.type == 'test') {
         if (element.previousElementSibling.type == 'test') {
             element.previousElementSibling.type = 'password';
             element.previousElementSibling.type = 'password';
-            element.textContent = "u+1F441 Passwort anzeigen";
+            element.textContent = "👁 Passwort anzeigen";
         }
         }
     }
     }
 </script>
 </script>