...
In order to override the default view file the Hawksearch search box widget uses you need to create a razor view file in your ASP .NET Core live application project at Views/Shared/Components/SearchBox/Default.cshtml.
In order to add additional templates, create corresponding view files under Views/Shared/Components/SearchBox/ .
When displayed in the widget settings, they will be split by capital letters and words after the first will be lowercased. So a view file called βSearchBoxTemplateOneβ will be displayed like βSearch box template oneβ in the widget settings.
The way the connector is designed it will automatically find the razor view files in that folder and use them. Below is the Default.cshtml code used.
...