Added registrar create form

This commit is contained in:
Pinga 2023-11-14 17:17:21 +02:00
parent e08ebcdbce
commit d0f1a92a6d
7 changed files with 577 additions and 8 deletions

View file

@ -55,6 +55,7 @@ $app->group('', function ($route) {
$route->get('/host/{domain}', HostsController::class . ':viewHost')->setName('viewHost');
$route->get('/registrars', RegistrarsController::class .':view')->setName('registrars');
$route->map(['GET', 'POST'], '/registrar/create', RegistrarsController::class . ':create')->setName('registrarcreate');
$route->get('/users', UsersController::class .':view')->setName('users');