I'm trying to use datetime-local to pick both date and time.
The input works okay, unfortunately I can't seem to get the step attribute to work at all.
The MDN docs seem to suggest I should be able to use it to set a step in seconds, however this just isn't working at all.
<form method='post' action='#'>
<input
type="datetime-local"
id="meeting-time"
name="meeting-time"
value="2018-06-12T19:30"
min="2018-06-07T00:00"
max="2018-06-14T00:00"
step="900"
/>
<input type='submit' value='Go!'>
</form>
Am I missing something?