This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Put the bellow code going to your login template > Page Settings > Custom Code > Custom CSS | |
| <script> | |
| document.addEventListener("DOMContentLoaded", function() { | |
| // CONFIG: IDs from form, ckek yours and replace here your form id | |
| const formId = 'form-login'; | |
| // 1. Find submit button at the Form using querySelector | |
| const formElement = document.getElementById(formId); | |
| if (!formElement) return; // Sai se não encontrar o form |