3 declare(strict_types=1);
15 $ui = $DIC->ui()->factory();
16 $renderer = $DIC->ui()->renderer();
19 $url_input = $ui->input()->field()->url(
"Basic Input",
"Just some basic input");
22 $form = $ui->input()->container()->form()->standard(
"#", [$url_input]);
25 return $renderer->render($form);