Skip to content
Snippets Groups Projects
Honeypot.php 661 B
Newer Older
  • Learn to ignore specific revisions
  • 
    use CodeIgniter\Config\BaseConfig;
    
    class Honeypot extends BaseConfig
    {
    
        /**
         * Makes Honeypot visible or not to human
         */
    
        public string $label = 'Fill This Field';
    
        public string $template = '<label>{label}</label><input type="text" name="{name}" value=""/>';
    
        public string $container = '<div style="display:none">{template}</div>';