Add recaptcha implementation #212
This commit is contained in:
@@ -1,8 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* The keys can be created here
|
||||
* https://www.google.com/recaptcha/admin
|
||||
*
|
||||
* Don't edit this file directly, add the section to your config.php
|
||||
*/
|
||||
return [
|
||||
'secret' => env('NOCAPTCHA_SECRET'),
|
||||
'sitekey' => env('NOCAPTCHA_SITEKEY'),
|
||||
'enabled' => false,
|
||||
'sitekey' => '',
|
||||
'secret' => '',
|
||||
|
||||
# Attributes can be found here:
|
||||
# https://developers.google.com/recaptcha/docs/display#render_param
|
||||
'attributes' => [
|
||||
'data-theme' => 'light',
|
||||
],
|
||||
|
||||
'options' => [
|
||||
'timeout' => 2.0,
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user