forked from ZwiiCMS-Team/ZwiiCMS
Captcha simple : addition simple
This commit is contained in:
parent
7a31eb4ff1
commit
159c7f82e2
@ -47,7 +47,7 @@ class template {
|
|||||||
'id' => $nameId,
|
'id' => $nameId,
|
||||||
'name' => $nameId,
|
'name' => $nameId,
|
||||||
'value' => '',
|
'value' => '',
|
||||||
'limit' => false
|
'limit' => false // captcha simple
|
||||||
], $attributes);
|
], $attributes);
|
||||||
|
|
||||||
// Captcha quatre opérations
|
// Captcha quatre opérations
|
||||||
@ -58,7 +58,8 @@ class template {
|
|||||||
|
|
||||||
// Tirage de l'opération
|
// Tirage de l'opération
|
||||||
mt_srand((float) microtime()*1000000);
|
mt_srand((float) microtime()*1000000);
|
||||||
$operator = mt_rand (1, 4);
|
// Captcha simple limité à l'addition
|
||||||
|
$operator = $attributes['limit'] ? mt_rand (1, 4) : 1;
|
||||||
|
|
||||||
// Limite si multiplication ou division
|
// Limite si multiplication ou division
|
||||||
if ($operator > 2) {
|
if ($operator > 2) {
|
||||||
|
@ -102,7 +102,7 @@
|
|||||||
<div class="col4 verticalAlignBottom">
|
<div class="col4 verticalAlignBottom">
|
||||||
<?php echo template::checkbox('configCaptchaStrong', true, 'Captcha renforcé', [
|
<?php echo template::checkbox('configCaptchaStrong', true, 'Captcha renforcé', [
|
||||||
'checked' => $this->getData(['config','captchaStrong']),
|
'checked' => $this->getData(['config','captchaStrong']),
|
||||||
'help' => 'Option recommandée pour sécuriser la connexion. S\'applique à tous les captchas du site.'
|
'help' => 'Option recommandée pour sécuriser la connexion. S\'applique à tous les captchas du site. Le captcha simple se limite à une addition de nombres de 0 à 10. Le captcha renforcé utilise quatre opérations de nombres de 0 à 20.'
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user