disable html input & pointer-events
css
https://developer.mozilla.org/en-US/docs/Web/CSS/pointer-events
https://css-tricks.com/almanac/properties/p/pointer-events/
how to disable input field in css
.avoid-clicks {
pointer-events: none;
}
js
how to disable input field in js
https://stackoverflow.com/questions/12896698/how-to-disable-an-input-field-using-javascript