PHP code example of anselmh / kirby-uniform-turnstile
1. Go to this page and download the library: Download anselmh/kirby-uniform-turnstile library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
anselmh / kirby-uniform-turnstile example snippets
return [
'anselmh.uniform-turnstile.siteKey' => 'my-site-key',
'anselmh.uniform-turnstile.secretKey' => 'my-secret-key',
];
$form = new Form(/* ... */);
if ($kirby->request()->is('POST'))
{
$form->turnstileGuard()
->emailAction(/* ... */);
}
html+php
<?= turnstileField()
html+php
<form action="<?= $page->url()