3 declare(strict_types=1);
    21     $ui = $DIC->ui()->factory();
    23     $request = $DIC->http()->request();
    35     $select = $ui->input()->field()->select(
"Cannot choose an Option", $options, 
"This is the byline text")
    39     $form = $ui->input()->container()->form()->standard(
'#', [$select]);
    42     if ($request->getMethod() == 
"POST") {
    43         $form = $form->withRequest($request);
    44         $result = $form->getData();
    46         $result = 
"No result yet.";
    51         "<pre>" . print_r($result, 
true) . 
"</pre><br/>" .