A search box for car hire with dates and times

First of all thanks for anyone who may help.

I am about to request affiliation to work with a car hire broker and needed to have a Search box for car hire with the typical data necessary to be connected to the broker API placed on my WIX made website (on the right side, near the site title). The example is below:


Of course I am aware there is much more underneath this box, for now I only needed the box really.

Once again, any help will be appreciated. If is around in the forum, please point me to the right direction and accept my apologies in advance.

Cheers.

So basically you will have to build a custom form with Corvid and then perform a search based on multiple user inputs (filter your database).
You just need to add whatever extra query filters that you need based on the amount of user inputs you have. Something like this:

function search() {
     wixData.query('List')    
     .contains("firstParam", $w("#firstParam").value)          
     .contains("secondParam", $w("#secondParam").value)
     .contains("thirdParam", $w("#thirdParam").value)
     //etc

Take a look at our tutorials on implementing search & filters:

Wix Code Tutorial | How to Filter Items on Repeater Using a Dropdown and Boolean Values on Wix Code

To filter by dropdowns:

https://www.vorbly.com/Vorbly-Code/WIX-REPEATER-WITH-MULTIPLE-FILTERS

Awesome! Thank you very much for your advice.