Runtime .html templates required for each form as / Web Core 1.9.8.3?

Upgrading web application project from Web Core 1.9.8.1 to 1.9.8.3 we noticed the output web application is trying to load form as html resource on runtime. As the resource does not exist it fails with 404 (html is not generated by compiler). Html for each form was not required on runtime before this version. How can we fix this problem? Is Bootstrap required now - why?

We have some units/forms (like uLogin.pas, uLogin.dfm) that are located in subfolder relative to project root folder.

example code:
LForm := TfrmLogin(TfrmCommonClass(LLoginForm.FormClass).CreateNew(
procedure (AForm: TObject)
begin
//the error pops up here
//http://localhost:8000/AppName/uLogin.html 404 (Not Found)
end
));
LForm.Popup := True;
LForm.PopupOpacity := 0.2;
LForm.OnModalResult := procedure (AValue: TModalResult)
begin
if AValue=mrOK then
begin
end;
end;

Kind Regards

  1. Bootstrap is not required, only optional
  2. A HTML template per form was the default before 1.9.8.0 and was always included. In v1.9.8.0 we introduced direct forms, explained here: TMS Software | Blog in the video. Between 1.9.8.1 and 1.9.8.3 there were no changes done with form HTML template handling

We have been using "Direct Web Forms" aka forms without additional html template for over a year now but the output web application broke only recently (could be version 1.9.8.0 but we noticed it later). There is no visible difference in project between direct web form and units/forms we are already using. The default logic changed from without mandatory html template to (with mandatory html template) when we create the form by code. How do we create "direct web form" by code since now it requires html template?

Application.CreateFormDirect() creates the form without HTML template.