Home
last modified time | relevance | path

Searched refs:csrf_token (Results 1 – 4 of 4) sorted by relevance

/webtrees/app/
H A DSession.php193 $csrf_token = self::get('CSRF_TOKEN');
195 if (is_string($csrf_token)) {
196 return $csrf_token;
199 $csrf_token = Str::random(32);
201 self::put('CSRF_TOKEN', $csrf_token);
203 return $csrf_token;
/webtrees/app/Helpers/
H A Dfunctions.php69 function csrf_token(): string function
/webtrees/resources/views/layouts/
H A Dadministration.phtml29 <meta name="csrf" content="<?= e(csrf_token()) ?>">
H A Ddefault.phtml35 <meta name="csrf" content="<?= e(csrf_token()) ?>">