phpvms/config/captcha.php

24 lines
464 B
PHP
Raw Normal View History

2018-03-16 23:50:04 +08:00
<?php
2018-03-17 00:38:06 +08:00
/*
* 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
*/
2018-03-16 23:50:04 +08:00
return [
2018-03-17 00:38:06 +08:00
'enabled' => false,
'sitekey' => '',
2018-08-27 00:40:04 +08:00
'secret' => '',
2018-03-17 00:38:06 +08:00
2018-08-27 00:40:04 +08:00
// Attributes can be found here:
// https://developers.google.com/recaptcha/docs/display#render_param
2018-03-17 00:38:06 +08:00
'attributes' => [
'data-theme' => 'light',
],
2018-03-16 23:50:04 +08:00
'options' => [
'timeout' => 2.0,
],
];