It's been a while since I handle native event without a framework but if I'm right you can get a input value inside the form form the event using input name
form.addEventListener("submit", function (e) {
const inputValue = e.target.inputName.value;
});
For further actions, you may consider blocking this person and/or reporting abuse
We're a blogging-forward open source social network where we learn from one another
It's been a while since I handle native event without a framework but if I'm right you can get a input value inside the form form the event using input name
form.addEventListener("submit", function (e) {
const inputValue = e.target.inputName.value;
});