mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-22 18:20:31 -05:00
9cc436be72
- Fix Typo - Add Recaptcha To Login Page - Cleanup captcha config NOTE: In order to use captcha on register and login pages you must have a recaptcha account here. https://www.google.com/recaptcha/ and then must enter your keys in the config/captcha.php and set enabled to true. It is highly suggested you do this to avoid bot account signing up and bot net attacks trying to brute force attack your site!
34 lines
913 B
PHP
34 lines
913 B
PHP
<?php
|
|
/**
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* UNIT3D is open-sourced software licensed under the GNU General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
* @author HDVinnie
|
|
*/
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Enabled
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Recaptcha On/Off
|
|
|
|
|
*/
|
|
|
|
'enabled' => false,
|
|
|
|
/*
|
|
|------------------------------------------------------------------------------------------------
|
|
| Credentials
|
|
| ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
'secretkey' =>'YOURKEYHERE',
|
|
'sitekey' => 'YOURKEYHERE',
|
|
];
|