mirror of
https://github.com/NohamR/AutoEnt.git
synced 2025-05-24 14:22:02 +00:00
9 lines
284 B
JavaScript
9 lines
284 B
JavaScript
document.addEventListener('DOMContentLoaded', function () {
|
|
const form = document.getElementById('loginForm');
|
|
const saveButton = document.getElementById('saveButton');
|
|
|
|
saveButton.addEventListener('click', function (event) {
|
|
event.preventDefault();
|
|
});
|
|
});
|
|
|