Skip to content
jQuery(document).ready(function($) {
$('#booking-login-form').on('submit', function(e) {
e.preventDefault();
var email = $('#email').val();
var refID = $('#booking_refernce').val();
$.ajax({
url: '/wp-json/custom/v1/validate-booking?email=' + encodeURIComponent(email) + '&booking_refernce=' + encodeURIComponent(refID),
method: 'GET',
success: function(response) {
if (response.success) {
window.location.href = "/booking-details/?ref=" + encodeURIComponent(refID);
} else {
alert("Invalid Email or Reference ID. Please try again.");
}
}
});
});
});