{{#autoForm schema="schema" id="submitoffer" type="method" meteormethod="submitoffer"}}
{{> afQuickField name="startLocation"}}
<input id="date" type="text" class="form-control datepicker">
<input id="departureTime" type="text" class="form-control timepicker">
<input id="returnTime" type="text" class="form-control timepicker">
{{> afQuickField name="seats" type="number"}}
<button type="submit" class="btn btn-primary">Offer lift</button>
{{/autoForm}}
I want to be able to use the date, departureTime and returnTime inputs (which are implementations of pickadate.js. However when I submit the form to the server, those inputs are not picked up as part of the form. How can I require input in them as well as submit them with the autoform?