37392-vm/assets/js/main.js
Flatlogic Bot a288b28941 Gastos01
2026-01-12 23:45:59 +00:00

7 lines
272 B
JavaScript

document.getElementById('add-expense-form').addEventListener('submit', function(e) {
e.preventDefault();
alert('Gasto añadido (simulación)!');
// Here you would normally send the data to the server
// For now, we just reset the form
this.reset();
});