8 lines
442 B
PHP
8 lines
442 B
PHP
|
|
<?php
|
||
|
|
// Google reCAPTCHA v3 Configuration
|
||
|
|
// IMPORTANT: Replace these with your actual keys from https://www.google.com/recaptcha/admin
|
||
|
|
define('RECAPTCHA_SITE_KEY', '6LcdAtUUAAAAAPX-5YJaWKJmeq7QIMjeLTS7qy6s'); // Replace with your site key
|
||
|
|
define('RECAPTCHA_SECRET_KEY', '6LcdAtUUAAAAANsEDSRbB_-EcCGtCDf5wGuUYj2u'); // Replace with your secret key
|
||
|
|
define('RECAPTCHA_THRESHOLD', 0.5); // Score threshold (0.0 - 1.0), higher is more strict
|
||
|
|
?>
|