2024-08-29 16:09:38 +01:00

17 lines
283 B
PHP

<?php
require "vendor/autoload.php";
use Dumbo\Dumbo;
use Dumbo\Helpers\BasicAuth;
$app = new Dumbo();
$app->use(BasicAuth::basicAuth("user:password"));
$app->get("/", function ($context) {
return $context->html("<h1>Welcome to the protected area!</h1>");
});
$app->run();