As per the General Data Protection Regulation (GDPR), you have the right to amend or delete any personal data or information you may have previously shared with us and which is stored on our website. This deletion / amendment will be carried out within a 24 hour period. Do note that any information removed is that which has been collected only through our website and not by any other means (guest management system, etc.).
function onSubmit(token){ //alert(token); $(".msg-status-row .alert").html("Successfully Validated! Please wait while processing your request.").removeClass("alert-danger").removeClass("alert-info").addClass("alert-success"); $(".msg-status-row .alert").slideDown(); $("#gdpr").submit(); return false; };
$(window).load(function(){
$("#gdpr").bootstrapValidator({
message: "This value is not valid", excluded: [":disabled"], feedbackIcons: { valid: "glyphicon glyphicon-ok", invalid: "glyphicon glyphicon-remove", validating: "glyphicon glyphicon-refresh" }, fields: { email_address: { group: ".response-field-email", validators: { notEmpty: { message: "Email is required and cannot be empty" }, emailAddress: { message: "Value is not a valid email address" } } }, }
}) .on("success.form.bv", function(e) {
// Prevent form submission e.preventDefault();$(this).unbind( e ); grecaptcha.execute(); });
$("#resetBtn").click(function() { $("#gdpr").data("bootstrapValidator").resetForm(true); grecaptcha.reset(); $(".form-control").attr("value", ""); });
});