mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
11 lines
184 B
PHP
11 lines
184 B
PHP
<?php
|
|
/** @phpstan-var \Twig\Environment $Twig */
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gazelle;
|
|
|
|
echo $Twig->render('user/mfa/remove.twig', [
|
|
'bad' => isset($_GET['invalid']),
|
|
]);
|