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 with 20 some error attached.")
21 ->withError(
"Some error");
24 $form = $ui->input()->container()->form()->standard(
"#", [$url_input]);
27 return $renderer->render($form);