2 changed files with 57 additions and 21 deletions
@ -242,33 +242,42 @@ class Aauth extends BaseConfig |
|||||||
|
|
||||||
/* |
/* |
||||||
|-------------------------------------------------------------------------- |
|-------------------------------------------------------------------------- |
||||||
| reCAPTCHA Variables |
| CAPTCHA Variables |
||||||
|-------------------------------------------------------------------------- |
|-------------------------------------------------------------------------- |
||||||
| |
| |
||||||
| 'recaptchaEnabled' |
| 'captchaEnabled' |
||||||
| |
| |
||||||
| Enables reCAPTCHA (for details see www.google.com/recaptcha/admin) |
| Enables CAPTCHA |
||||||
| (default: '[email protected]') |
| (default: false) |
||||||
| |
| |
||||||
| 'recaptchaLoginAttempts' |
| 'captchaType' |
||||||
| |
| |
||||||
| Login Attempts to display reCAPTCHA |
| CAPTCHA Types |
||||||
| (default: '') |
| Available Options: |
||||||
|
| - 'recaptcha' (for details see https://www.google.com/captcha/admin) |
||||||
|
| - 'hcaptcha' (for details see https://hcaptcha.com/docs) |
||||||
|
| (default: 'recaptcha') |
||||||
|
| |
||||||
|
| 'captchaLoginAttempts' |
||||||
|
| |
||||||
|
| Login Attempts to display CAPTCHA |
||||||
|
| (default: 6) |
||||||
| |
| |
||||||
| 'recaptchaSiteKey' |
| 'captchaSiteKey' |
||||||
| |
| |
||||||
| The reCAPTCHA siteKey |
| The CAPTCHA siteKey |
||||||
| (default: '') |
| (default: '') |
||||||
| |
| |
||||||
| 'recaptchaSecret' |
| 'captchaSecret' |
||||||
| |
| |
||||||
| The reCAPTCHA secretKey |
| The CAPTCHA secretKey |
||||||
| (default: '') |
| (default: '') |
||||||
*/ |
*/ |
||||||
public $recaptchaEnabled = false; |
public $captchaEnabled = false; |
||||||
public $recaptchaLoginAttempts = 6; |
public $captchaType = 'recaptcha'; |
||||||
public $recaptchaSiteKey = ''; |
public $captchaLoginAttempts = 6; |
||||||
public $recaptchaSecret = ''; |
public $captchaSiteKey = ''; |
||||||
|
public $captchaSecret = ''; |
||||||
|
|
||||||
/* |
/* |
||||||
|-------------------------------------------------------------------------- |
|-------------------------------------------------------------------------- |
||||||
|
Loading…
Reference in new issue