diff --git a/firmware/storage/www/captive.html b/firmware/storage/www/captive.html
index 4e03a2f..9e17dbe 100644
--- a/firmware/storage/www/captive.html
+++ b/firmware/storage/www/captive.html
@@ -114,18 +114,6 @@
updateConnectBtn();
});
- // Toggle password visibility
- function togglePassword() {
- const input = document.getElementById('password');
- const btn = document.getElementById('password-btn');
- if (input.type === 'password') {
- input.type = 'text';
- btn.textContent = 'π';
- } else {
- input.type = 'password';
- btn.textContent = 'ποΈ';
- }
- }