HTML Time Picker

<input type="time">
#You should always use label for all inputs for accesssibility purposes.
<label for="picker">pick a time:</label>
<input type="time" id="picker" name="picker">
Odd Ox