WURFLWASM.ready(function () {
var config = new WURFLWASM.Config();
var manager = new WURFLWASM.Manager(config);
// Check if the client is using a VPN
var isVPN = manager.is_vpn();
// Use the result to take appropriate actions
if (isVPN) {
// User is using a VPN
console.log("VPN detected!");
// Perform necessary actions to prevent access to your landing page
} else {
// User is not using a VPN
console.log("No VPN detected.");
// Allow access to your landing page
// Add your existing JavaScript code here to handle image upload and blur functionality
}
});
!doctype>