{"version":3,"file":"bundle.7ec23e6493b5c2d0b9ac.js","mappings":";;AAAA;AACoC;AACP;AAC7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA,SAAS;AACT,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,SAAS;AACT;AACA;AACA,SAAS;AACT;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA,CAAC","sources":["webpack://snappet-authentication/./Ui/Scripts/index.js"],"sourcesContent":["// Write your JavaScript code.\r\nimport 'normalize.css/normalize.css'\r\nimport '../Styles/main.scss';\r\n\r\nfunction init() {\r\n // Modify forms to disable all buttons on submit\r\n\r\n function disableButtonsAndInputs(form) {\r\n form.querySelectorAll('button, input[type=submit]').forEach(e => {\r\n e.disabled = true;\r\n });\r\n }\r\n\r\n document.querySelectorAll('form').forEach(e => {\r\n e.addEventListener('submit', (evt) => {\r\n disableButtonsAndInputs(evt.target);\r\n });\r\n });\r\n\r\n // Enable show password button\r\n const passwordIcon = document.getElementById('password-icon');\r\n const passwordInput = document.getElementById('password-input');\r\n if (passwordIcon && passwordInput) {\r\n passwordIcon.addEventListener('mousedown', function (event) {\r\n passwordInput.type = 'text';\r\n });\r\n passwordIcon.addEventListener('mouseup', function (event) {\r\n passwordInput.type = 'password';\r\n });\r\n passwordIcon.addEventListener('touchstart', function () {\r\n passwordInput.type = 'text';\r\n });\r\n passwordIcon.addEventListener('touchend', function () {\r\n passwordInput.type = 'password';\r\n });\r\n }\r\n}\r\n\r\n(function() {\r\n\twindow.addEventListener('DOMContentLoaded', init);\r\n})();\r\n"],"names":[],"sourceRoot":""}