2020-05-02 17:39:41 +02:00
|
|
|
// Example starter JavaScript for disabling form submissions if there are invalid fields
|
2022-04-12 17:07:25 +02:00
|
|
|
(() => {
|
2020-05-02 17:39:41 +02:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
// Fetch all the forms we want to apply custom Bootstrap validation styles to
|
2022-04-12 17:07:25 +02:00
|
|
|
const forms = document.querySelectorAll('.needs-validation')
|
2020-05-02 17:39:41 +02:00
|
|
|
|
|
|
|
// Loop over them and prevent submission
|
2022-04-12 17:07:25 +02:00
|
|
|
Array.from(forms).forEach(form => {
|
|
|
|
form.addEventListener('submit', event => {
|
|
|
|
if (!form.checkValidity()) {
|
|
|
|
event.preventDefault()
|
|
|
|
event.stopPropagation()
|
|
|
|
}
|
2020-05-02 17:39:41 +02:00
|
|
|
|
2022-04-12 17:07:25 +02:00
|
|
|
form.classList.add('was-validated')
|
|
|
|
}, false)
|
|
|
|
})
|
2020-05-02 17:39:41 +02:00
|
|
|
})()
|