|
|
@@ -82,4 +82,14 @@
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
+ function togglePW(element) {
|
|
|
+ if (element.previousElementSibling.type == 'password') {
|
|
|
+ element.previousElementSibling.type = 'text';
|
|
|
+ element.textContent = '👁 Passwort verstecken';
|
|
|
+ }
|
|
|
+ if (element.previousElementSibling.type == 'test') {
|
|
|
+ element.previousElementSibling.type = 'password';
|
|
|
+ element.textContent = '👁 Passwort anzeigen';
|
|
|
+ }
|
|
|
+ }
|
|
|
</script>
|