|
12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
-
- namespace Config;
-
- use CodeIgniter\Config\BaseConfig;
-
- class Honeypot extends BaseConfig
- {
-
-
- public $hidden = true;
-
-
-
- public $label = 'Fill This Field';
-
-
-
- public $name = 'honeypot';
-
-
-
- public $template = '<label>{label}</label><input type="text" name="{name}" value=""/>';
-
-
-
- public $container = '<div style="display:none">{template}</div>';
- }
|