Files
UNIT3D-Community-Edition/config/captcha.php
T
HDVinnie 9cc436be72 (Update) Auth System
- 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!
2018-09-05 09:10:42 -04:00

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',
];