2025-06-17 19:22:58 +01:00
|
|
|
<?php
|
|
|
|
|
// Google reCAPTCHA v3 Configuration
|
|
|
|
|
// IMPORTANT: Replace these with your actual keys from https://www.google.com/recaptcha/admin
|
2025-06-18 05:17:33 +00:00
|
|
|
define('RECAPTCHA_SITE_KEY', '6LfPtPUSAAAAAKQtzAgmzobToSqdlngK9zlw2oLx'); // Replace with your site key
|
|
|
|
|
define('RECAPTCHA_SECRET_KEY', '6LfPtPUSAAAAAMjCt9LFhrahSL9SyrIODT_l6lqw'); // Replace with your secret key
|
2025-06-17 19:22:58 +01:00
|
|
|
define('RECAPTCHA_THRESHOLD', 0.5); // Score threshold (0.0 - 1.0), higher is more strict
|
|
|
|
|
?>
|