54 lines
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
|
/**
|
||
|
* Enable OTP
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
document.addEventListener('DOMContentLoaded', function (e) {
|
||
|
(function () {
|
||
|
const phoneMask = document.querySelector('.phone-number-otp-mask');
|
||
|
|
||
|
// Phone Number Input Mask
|
||
|
if (phoneMask) {
|
||
|
new Cleave(phoneMask, {
|
||
|
phone: true,
|
||
|
phoneRegionCode: 'US'
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// Enable OTP form validation
|
||
|
FormValidation.formValidation(document.getElementById('enableOTPForm'), {
|
||
|
fields: {
|
||
|
modalEnableOTPPhone: {
|
||
|
validators: {
|
||
|
notEmpty: {
|
||
|
message: 'Please enter your mobile number'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
plugins: {
|
||
|
trigger: new FormValidation.plugins.Trigger(),
|
||
|
bootstrap5: new FormValidation.plugins.Bootstrap5({
|
||
|
// Use this for enabling/changing valid/invalid class
|
||
|
// eleInvalidClass: '',
|
||
|
eleValidClass: '',
|
||
|
rowSelector: '.col-12'
|
||
|
}),
|
||
|
submitButton: new FormValidation.plugins.SubmitButton(),
|
||
|
// Submit the form when all fields are valid
|
||
|
// defaultSubmit: new FormValidation.plugins.DefaultSubmit(),
|
||
|
autoFocus: new FormValidation.plugins.AutoFocus()
|
||
|
},
|
||
|
init: instance => {
|
||
|
instance.on('plugins.message.placed', function (e) {
|
||
|
//* Move the error message out of the `input-group` element
|
||
|
if (e.element.parentElement.classList.contains('input-group')) {
|
||
|
e.element.parentElement.insertAdjacentElement('afterend', e.messageElement);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
})();
|
||
|
});
|