S2OJ/web/app/vendor/gregwar/captcha/demo/inline.php
Baoshuo 2fcc71029e
All checks were successful
continuous-integration/drone/push Build is passing
chore(web): move gregwar/captcha
2022-10-08 19:58:22 +08:00

23 lines
413 B
PHP

<?php
require_once __DIR__.'/../vendor/autoload.php';
use Gregwar\Captcha\CaptchaBuilder;
$captcha = new CaptchaBuilder();
$captcha->build();
?>
<!DOCTYPE html>
<body>
<html>
<meta charset="utf-8" />
</html>
<body>
<h1>Inline Captcha</h1>
<img src="<?php echo $captcha->inline(); ?>"/><br/>
Phrase: <?php echo $captcha->getPhrase(); ?>
</body>
</body>