mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-28 10:24:45 +02:00

* add laravel turnstile * add config & settings for turnstile * publish view to center captcha * completely replace reCAPTCHA * update FailedCaptcha event * add back config for domain verification * don't set language so browser lang is used
19 lines
302 B
PHP
19 lines
302 B
PHP
<?php
|
|
|
|
namespace App\Events\Auth;
|
|
|
|
use App\Events\Event;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class FailedCaptcha extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct(public string $ip, public ?string $message)
|
|
{
|
|
}
|
|
}
|